Skip to content

Commit 033b0aa

Browse files
committed
Remove TSLint and configure eslint
1 parent f7296da commit 033b0aa

File tree

3 files changed

+7
-25
lines changed

3 files changed

+7
-25
lines changed

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"dbaeumer.vscode-eslint"
4+
]
5+
}

.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
"vsix/": true
1313
},
1414
"csharp.suppressDotnetRestoreNotification": true,
15-
"tslint.rulesDirectory": "node_modules/tslint-microsoft-contrib",
1615
"typescript.tsdk": "./node_modules/typescript/lib",
1716
"mocha.enabled": true,
1817
"omnisharp.autoStart": false,
19-
"editor.formatOnSave": false
18+
"editor.formatOnSave": false,
19+
"eslint.lintTask.enable": true
2020
}

.vscode/tasks.json

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -44,28 +44,5 @@
4444
"Run tests in VS Code by launching the debugger with the 'Launch Tests' configuration."
4545
]
4646
},
47-
{
48-
"label": "tslint",
49-
"command": "gulp",
50-
"type": "shell",
51-
"args": [
52-
"tslint"
53-
],
54-
"problemMatcher": {
55-
"owner": "tslint",
56-
"fileLocation": [
57-
"relative",
58-
"${workspaceFolder}"
59-
],
60-
"severity": "warning",
61-
"pattern": {
62-
"regexp": "^\\[tslint\\] (.*):(\\d+):(\\d+):\\s+(.*)$",
63-
"file": 1,
64-
"line": 2,
65-
"column": 3,
66-
"message": 4
67-
}
68-
}
69-
}
7047
]
7148
}

0 commit comments

Comments
 (0)