generated from include-davis/client-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
54 lines (54 loc) · 1.08 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
// significant keys for mapping
// alt text for images
// 2 spaces for tab for js
// enforce prettier
// enforce warnings as errors
{
"root": true,
"extends": [
"eslint:recommended",
"plugin:@next/next/recommended",
"next",
"prettier"
],
"plugins": [
"prettier",
"lit-a11y"
],
"rules": {
"prettier/prettier": [
"error",
{
"bracketSpacing": true,
"tabWidth": 2,
"printWidth": 80,
"useTabs": false,
"trailingComma": "es5",
"endOfLine": "auto",
"semi": 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,
"block-spacing": 1,
"eqeqeq": [
"error",
"always"
],
"no-unused-vars": [
"error",
{
"vars": "all",
"varsIgnorePattern": "^_*$",
"argsIgnorePattern": "^_*$",
"destructuredArrayIgnorePattern": "^_*$"
}
]
}
}