-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
32 lines (32 loc) · 882 Bytes
/
.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
{
"env": {
"browser": true,
"es2021": true
},
"extends": ["airbnb-base", "prettier", "plugin:prettier/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "prettier"],
"rules": {
"prettier/prettier": "error",
"arrow-parens": "off",
"import/prefer-default-export": "off",
"implicit-arrow-linebreak": "off",
"no-console": "off",
"import/extensions": "off",
"import/no-unresolved": "off",
"comma-dangle": "off",
"function-paren-newline": "off",
"arrow-body-style": "off",
"max-len": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error",
"no-shadow": "off",
"@typescript-eslint/no-shadow": "error",
"object-curly-newline": "off",
"consistent-return": "off"
}
}