-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy path.eslintrc.js
More file actions
28 lines (28 loc) · 795 Bytes
/
Copy path.eslintrc.js
File metadata and controls
28 lines (28 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
module.exports = {
"env": {
"browser": true,
"es6": true
},
"extends": ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
"parser": '@typescript-eslint/parser',
"plugins": ['@typescript-eslint'],
"root": true,
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/ban-types":"off",
"no-case-declarations": "off",
"prefer-const": "off",
"no-empty": "off",
"curly": "error"
}
};