-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
27 lines (27 loc) · 846 Bytes
/
.eslintrc.js
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
module.exports = {
'root': true,
'parser': '@typescript-eslint/parser',
'plugins': [
'@typescript-eslint',
],
'extends': [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
],
'rules': {
'@typescript-eslint/no-explicit-any': 1,
'@typescript-eslint/no-unused-vars': 1,
'@typescript-eslint/no-empty-function': 1,
'@typescript-eslint/no-empty-interface': 1,
'@typescript-eslint/no-var-requires': 1,
'@typescript-eslint/no-non-null-assertion': 1,
'@typescript-eslint/explicit-module-boundary-types': 0,
'@typescript-eslint/no-inferrable-types': 0,
'@typescript-eslint/no-this-alias': 0,
'@typescript-eslint/no-namespace': 0,
'no-console': 1,
'no-undef': 0,
'quotes': ['warn', 'single', { 'avoidEscape': true, 'allowTemplateLiterals': true }],
},
}