-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path.eslintrc
29 lines (29 loc) · 828 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
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"extends": ["standard", "plugin:eslint-plugin/recommended", "plugin:chai-friendly/recommended", "plugin:mocha/recommended"],
"plugins": ["simple-import-sort"],
"rules": {
"space-before-function-paren": 0,
"no-throw-literal": 0,
"prefer-promise-reject-errors": 0,
"dot-notation": 0,
"prefer-const": 0,
"no-console": 1,
"quotes": 0,
"array-callback-return": 0,
"eqeqeq": 0,
"no-unneeded-ternary": 0,
"indent": 0,
"no-useless-constructor": 0,
"no-sparse-arrays": 0,
"no-prototype-builtins": 0,
"mocha/no-hooks-for-single-case": 0,
"quote-props": 0,
"chai-friendly/no-unused-expressions": 0,
"no-async-promise-executor": 0
}
}