forked from lostfictions/peerio-icebear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
31 lines (31 loc) · 911 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
{
"root": true,
"parser": "typescript-eslint-parser",
"plugins": [
"typescript"
],
"extends": ["peerio/index.base.js", "prettier"],
"rules": {
"no-undef": 0,
"no-unused-vars": 0,
"no-mixed-operators": 0,
"no-multi-assign": 0,
"no-restricted-properties": 1,
"no-void": 0,
"prefer-arrow-callback": 0,
"no-debugger": 1,
"prefer-destructuring": 0,
"no-await-in-loop": 0,
"import/extensions": 0,
"import/newline-after-import": 0,
"import/first": 0,
"import/no-mutable-exports": 0,
"import/prefer-default-export": 0,
"import/export": 0,
"import/no-unresolved": 0,
"typescript/class-name-casing": 2,
"typescript/no-angle-bracket-type-assertion": 2,
"typescript/no-array-constructor": 2,
"no-useless-return": 0
}
}