-
Notifications
You must be signed in to change notification settings - Fork 31
/
.eslintrc.json
35 lines (35 loc) · 1019 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
29
30
31
32
33
34
35
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"indent": ["error", 2, { "SwitchCase": 1 }],
"no-console": ["warn", { "allow": ["warn", "error"] }],
"no-loss-of-precision": "off",
"no-unused-vars": ["error", { "vars": "all", "args": "none" }],
"quotes": ["error", "single", { "allowTemplateLiterals": true, "avoidEscape": true }],
"semi": ["error", "always"],
"curly": "error"
},
"overrides": [
{
"files": ["test/**/*.{js,ts}", "examples/**/*.js", "bin/**/*.js"],
"rules": {
"@typescript-eslint/no-var-requires": "off"
}
}
],
"env": {
"es6": true,
"node": true,
"mocha": true
},
"extends": ["plugin:@typescript-eslint/recommended", "prettier"]
}