Skip to content

Commit 5aaa966

Browse files
Cleanup (#132)
* Refactoring * Move debug config handling to separate file * Improve logging * Fix missing logger change * Fix quotes * Fix more quotes * Remove unused dependencies * More cleanup * Typo * Add --vanilla as default commandLineArg * Update Github action * Linter fix
1 parent 572dc5b commit 5aaa966

18 files changed

+800
-1433
lines changed

.eslintrc.json

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,28 @@
33
"parser": "@typescript-eslint/parser",
44
"parserOptions": {
55
"ecmaVersion": 2018,
6-
"sourceType": "module"
6+
"sourceType": "module",
7+
"project": "./tsconfig.json"
78
},
9+
"extends": [
10+
"eslint:recommended",
11+
"plugin:@typescript-eslint/recommended",
12+
"plugin:@typescript-eslint/recommended-requiring-type-checking"
13+
],
814
"plugins": [
915
"@typescript-eslint"
1016
],
1117
"rules": {
18+
"@typescript-eslint/no-inferrable-types": "off",
19+
"@typescript-eslint/no-floating-promises": "warn",
1220
"@typescript-eslint/semi": "warn",
21+
"@typescript-eslint/no-unused-vars": "off",
22+
"@typescript-no-unused-vars": "off",
23+
"@typescript-eslint/no-explicit-any": "off",
1324
"curly": "warn",
1425
"eqeqeq": "warn",
1526
"no-throw-literal": "warn",
16-
"semi": "warn"
27+
"semi": "warn",
28+
"quotes": ["warn", "single"]
1729
}
1830
}

0 commit comments

Comments
 (0)