Skip to content

Commit 147399b

Browse files
committed
Update eslint config
1 parent ca43da5 commit 147399b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.eslintrc.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,15 @@ module.exports = {
22
root: true,
33
parser: '@typescript-eslint/parser',
44
parserOptions: {
5-
ecmaVersion: 2018,
6-
sourceType: 'module'
5+
ecmaVersion: 2020,
6+
sourceType: 'module',
77
},
88
extends: [
99
'plugin:@typescript-eslint/recommended',
10-
'prettier/@typescript-eslint',
11-
'plugin:prettier/recommended'
10+
'plugin:prettier/recommended',
1211
],
1312
env: {
14-
node: true
13+
node: true,
1514
},
1615
rules: {
1716
'@typescript-eslint/no-empty-interface': ['off'],
@@ -20,7 +19,8 @@ module.exports = {
2019
'@typescript-eslint/no-explicit-any': ['off'],
2120
'@typescript-eslint/explicit-member-accessibility': ['off'],
2221
'@typescript-eslint/no-empty-function': ['off'],
22+
'@typescript-eslint/explicit-module-boundary-types': ['off'],
2323
'prefer-const': ['off'],
24-
'prefer-rest-params': ['off']
25-
}
24+
'prefer-rest-params': ['off'],
25+
},
2626
};

0 commit comments

Comments
 (0)