-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
58 lines (58 loc) · 2.17 KB
/
.eslintrc.js
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
const config = {
root: true,
parser: "@typescript-eslint/parser",
overrides: [
{
files: ["*.ts"],
parserOptions: {
project: ["./src/tsconfig.json"],
tsconfigRootDir: __dirname
}
}
],
plugins: [
"@typescript-eslint",
"deprecation"
],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
env: {
node: true
},
ignorePatterns: [".eslintrc.js"],
rules: {
"@typescript-eslint/no-unused-vars": [
"error",
{ "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" } // Same as in tsconfig. Allow such vars if they start with an underscore.
],
"require-await": "error", // Helps catch missing awaits
"strict": "error", // Disallows use of e.g. reserved keywords
"prefer-promise-reject-errors": "error", // Throwing real Errors helps traceability
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/prefer-readonly": "error",
"@typescript-eslint/consistent-type-definitions": "error", // Prefer 'interface' over 'type'
"@typescript-eslint/no-empty-interface": "off",
"no-empty": "off", // Empty catch blocks can be useful
"no-inner-declarations": "off", // Seems to break when using TS namespaces
"eqeqeq": "error", // == can be obscure/unintuitive, so use ===
"deprecation/deprecation": "warn",
"no-constant-condition": "off",
// CODE FORMATTING =================
"semi": "warn",
"camelcase": "warn",
"indent": ["warn", 4, { SwitchCase: 1 }],
"space-before-blocks": "warn",
"keyword-spacing": "warn",
"space-before-function-paren": ["warn", "never"],
"dot-location": "warn",
"quotes": ["warn", "double", {"allowTemplateLiterals": true}], // Disallows single quote strings
"comma-spacing": "warn",
"brace-style": "warn",
"@typescript-eslint/type-annotation-spacing": "warn",
"no-trailing-spaces": "warn"
}
}
module.exports = config;