-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.eslintrc.json
28 lines (28 loc) · 1004 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
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": { "project": "./tsconfig.json" },
"env": { "es6": true },
"plugins": ["import", "eslint-comments", "functional"],
"ignorePatterns": ["node_modules", "build", "coverage"],
"extends": ["bitauth"],
"rules": {
"valid-jsdoc": "off",
"no-process-exit": "error",
"@typescript-eslint/explicit-member-accessibility": "off",
"@typescript-eslint/require-await": "off",
"@typescript-eslint/prefer-readonly-parameter-types": "off",
"@typescript-eslint/object-curly-spacing": "off",
"@typescript-eslint/consistent-indexed-object-style": [
"error",
"index-signature"
],
"@typescript-eslint/no-non-null-assertion": "off",
"functional/no-class": "off",
"functional/no-conditional-statement": "off",
"functional/no-this-expression": "off",
"functional/no-expression-statement": "off",
"functional/no-return-void": "off",
"functional/immutable-data": "off"
}
}