-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
87 lines (87 loc) · 2.56 KB
/
.eslintrc
File metadata and controls
87 lines (87 loc) · 2.56 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"extends": [
"eslint:recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"import",
"eslint-plugin-tsdoc"
],
"env": {
"browser": false,
"node": true,
"es6": true,
"jest": true
},
"overrides": [
{
"files": ["src/**/*.ts"],
"excludedFiles": ["src/**/__tests__/**"],
"rules": {
"no-restricted-syntax": ["error", "ForOfStatement", "ForInStatement"],
"no-throw-literal": "error",
"import/no-default-export": "error",
"import/no-self-import": "error"
},
"parserOptions": {
"ecmaVersion": 2015,
"sourceType": "module"
}
},
{
"files": ["types/**"],
"rules": {
"no-use-before-define": "off",
"no-undef": "off" // turned off to avoid issue with triple-slash path directive
}
},
{
// Enable TSDoc rules for TypeScript files, allowing the use of JSDoc in JS files.
"files": ["**/*.ts"],
"rules": {
"tsdoc/syntax": "warn"
}
}
],
"rules": {
"indent": ["error", 2, {"SwitchCase": 1}],
"quotes": ["warn", "single", "avoid-escape"],
"linebreak-style": ["error", "unix"],
"semi": ["error", "always"],
"no-underscore-dangle": "off",
"eqeqeq": ["error", "smart"],
"no-unused-expressions": "off",
"new-cap" : "off",
"no-mixed-requires": "off",
"camelcase": ["error", {"properties": "never"}],
"no-use-before-define": ["error", "nofunc"],
"eol-last": ["error", "always"],
"@typescript-eslint/no-unused-vars": "error",
"keyword-spacing": "error",
"comma-style": "error",
// added rules:
"strict": "off",
"comma-dangle": ["error", "always-multiline"],
"no-console": "off",
"callback-return": ["error"],
"handle-callback-err": ["error", "^(err|error|\\w+Error)$"],
"no-buffer-constructor": "error",
"no-process-env": "error",
"import/no-extraneous-dependencies": "off",
"node/no-unpublished-require": "off",
"complexity": ["warn"],
"class-methods-use-this": "off",
"no-param-reassign": ["off"],
"no-unmodified-loop-condition": "error",
"no-useless-call": "error",
"no-useless-escape": "off",
"prefer-promise-reject-errors": ["error", { "allowEmptyReject": true }],
"require-await": "error",
"key-spacing": ["error", { "beforeColon": false }],
"quote-props": ["error", "as-needed"],
"comma-spacing": ["error", { "before": false, "after": true }],
"object-curly-spacing": ["error", "always"],
"no-trailing-spaces": "error"
}
}