-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
36 lines (34 loc) · 833 Bytes
/
.eslintrc
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
29
30
31
32
33
34
35
36
{
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"extends": ["airbnb-base", "prettier"],
"plugins": ["@typescript-eslint"],
"settings": {
"react": {
"pragma": "h"
}
},
"rules": {
"eol-last": "off",
"no-unused-vars": "off",
"class-methods-use-this": "off",
"global-require": "off",
"no-underscore-dangle": "off",
"no-param-reassign": "off",
"no-dupe-class-members": "off",
"max-classes-per-file": "off",
"import/no-dynamic-require": "off",
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": "off",
"import/extensions": "off",
"import/prefer-default-export": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
]
}
}