generated from include-davis/Next.js-App-Router-Starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
52 lines (52 loc) · 1.31 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
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@next/next/recommended",
"next",
"prettier"
],
"plugins": ["@typescript-eslint", "prettier", "unicorn", "lit-a11y"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"prettier/prettier": [
"error",
{
"bracketSpacing": true,
"tabWidth": 2,
"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",
"@typescript-eslint/explicit-function-return-type": "off",
"react/require-default-props": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{ "vars": "all", "varsIgnorePattern": "^_*$", "argsIgnorePattern": "^_*$" }
],
"@typescript-eslint/no-explicit-any": 0,
"block-spacing": 1
}
}