Skip to content

Commit c75cb58

Browse files
committed
Migrate from TSLint to ESLint
1 parent 40f7531 commit c75cb58

File tree

6 files changed

+1022
-16
lines changed

6 files changed

+1022
-16
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
out

.eslintrc.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"extends": [
3+
"eslint:recommended",
4+
"plugin:@typescript-eslint/recommended"
5+
],
6+
"parser": "@typescript-eslint/parser",
7+
"plugins": [
8+
"@typescript-eslint"
9+
],
10+
"rules": {
11+
"semi": ["error", "always"],
12+
"comma-dangle": ["error", "always-multiline"]
13+
}
14+
}

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
dist
1+
out
22
node_modules
33
*.vsix
4-
out

0 commit comments

Comments
 (0)