-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
41 lines (40 loc) · 1.25 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
"use strict";
module.exports = {
env: {
es6: true,
node: true,
},
parserOptions: {
ecmaVersion: 2018,
sourceType: "module",
project: "./tsconfig.json",
/**
* TODO: temporary workaround for vsocde complaining about parsing error
* which can only be fixed by restarting vscode. I should try to upgrade
* @typescript-eslint/parser to see if it's still happening.
*/
createDefaultProgram: true,
},
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint", "prettier"],
extends: ["plugin:@typescript-eslint/recommended", "prettier"],
rules: {
"@typescript-eslint/indent": 0,
"@typescript-eslint/no-object-literal-type-assertion": 0,
"linebreak-style": ["error", "unix"],
"no-constant-condition": "error",
semi: "error",
"no-extra-semi": "error",
"prefer-const": "error",
"eol-last": "error",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-unused-vars": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/interface-name-prefix": 0,
"@typescript-eslint/no-use-before-define": 0,
"no-console": 0,
"prettier/prettier": "error",
curly: "error",
},
};