Skip to content

Commit 8ff8010

Browse files
committed
Updeps (again), switch tslint for eslib
1 parent dab4c07 commit 8ff8010

File tree

6 files changed

+1851
-589
lines changed

6 files changed

+1851
-589
lines changed

.eslintignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/node_modules
2+
/dist
3+
/out
4+
zz_*

.eslintrc

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"root": true,
3+
"parser": "@typescript-eslint/parser",
4+
"plugins": [
5+
"@typescript-eslint"
6+
],
7+
"extends": [
8+
"eslint:recommended",
9+
"plugin:@typescript-eslint/recommended"
10+
],
11+
"rules": {
12+
"no-debugger": "off",
13+
"no-unused-vars": "off",
14+
"prefer-const": "warn",
15+
"no-inner-declarations": "off",
16+
"@typescript-eslint/no-explicit-any": "off",
17+
// "@typescript-eslint/no-unused-vars": "off",
18+
// "@typescript-eslint/no-non-null-assertion": "off",
19+
"@typescript-eslint/no-this-alias": [
20+
"error",
21+
{
22+
"allowDestructuring": true,
23+
"allowedNames": ["self"]
24+
}
25+
]
26+
}
27+
}

0 commit comments

Comments
 (0)