forked from rdkcentral/solid-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
72 lines (72 loc) · 1.64 KB
/
.eslintrc.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"root": true,
"env": {
"browser": true,
"es6": true,
"node": true,
"jest": true
},
"ignorePatterns": ["node_modules", "dist", "storybook-static", "**/l3-ui-theme-base/**/*"],
"plugins": ["jest", "prettier"],
"extends": [
"plugin:solid/recommended",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"no-console": "off",
"no-extra-boolean-cast": "off",
"no-prototype-builtins": [0],
"prefer-const": [
"error",
{
"destructuring": "any",
"ignoreReadBeforeAssign": false
}
],
"prettier/prettier": [
"error",
{
"printWidth": 110,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 2
}
],
"quotes": [2, "single", "avoid-escape"],
"solid/style-prop": "off",
"space-before-function-paren": [
0,
{
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}
],
"@typescript-eslint/no-unused-vars": [
"error",
{
"args": "all",
"argsIgnorePattern": "^_",
"caughtErrors": "all",
"caughtErrorsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"ignoreRestSiblings": true
}
]
},
"parserOptions": {
"parser": "babel-eslint",
"ecmaVersion": "latest",
"sourceType": "module",
"jsx": true,
"ecmaFeatures": {
// Fix to allow react components with jsx
"jsx": true
}
}
}