-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc
37 lines (37 loc) · 812 Bytes
/
.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
{
"parser": "@typescript-eslint/parser",
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:unicorn/recommended",
"prettier",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["react", "prettier", "@typescript-eslint", "unicorn", "import"],
"rules": {
"max-len": [
"warn",
{
"code": 100
}
],
"prettier/prettier": "error",
"consistent-return": ["warn"],
"no-unused-vars": ["off"],
"unicorn/filename-case": ["off"],
"unicorn/prevent-abbreviations": ["off"]
}
}