forked from frictionlessdata/components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
39 lines (39 loc) · 894 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
37
38
39
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": { "jsx": true }
},
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"extends": [
"standard",
"plugin:react/recommended"
],
"settings": {
"react": { "version": "detect" }
},
"env": {
"browser": true,
"jest": true
},
"rules": {
"indent": "off",
"no-unused-vars": "off",
"multiline-ternary": "off",
"import/no-duplicates": "off",
"no-use-before-define": "off",
"no-useless-constructor": "off",
"space-before-function-paren": "off",
"no-dupe-class-members": "off",
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline"
}],
"@typescript-eslint/no-unused-vars": ["error", {
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}]
}
}