forked from include-davis/jass-ws24
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
48 lines (48 loc) · 1.13 KB
/
.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
40
41
42
43
44
45
46
47
48
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"next",
"prettier"
],
"plugins": ["prettier", "unicorn", "lit-a11y"],
"rules": {
"prettier/prettier": [
"error",
{
"bracketSpacing": true,
"tabWidth": 4,
"printWidth": 80,
"useTabs": false,
"trailingComma": "es5",
"endOfLine": "auto",
"semi": true,
"singleQuote": true
}
],
"lit-a11y/alt-text": [
2
],
"arrow-body-style": "off",
"prefer-arrow-callback": "off",
"max-lines-per-function": "off",
"react/no-unescaped-entities": "off",
"react/no-unknown-property": 2,
"jest/no-deprecated-functions": "off",
"react/react-in-jsx-scope": "off",
"react/require-default-props": "off",
"no-unused-vars": [
"error",
{
"vars": "all",
"varsIgnorePattern": "^_*$",
"argsIgnorePattern": "^_*$",
"destructuredArrayIgnorePattern": "^_*$"
}
],
"block-spacing": 1
}
}