File tree 7 files changed +576
-26
lines changed
7 files changed +576
-26
lines changed Original file line number Diff line number Diff line change
1
+ node_modules
2
+ out
3
+ * .js
Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ parser : "@typescript-eslint/parser" ,
3
+ extends : [
4
+ "eslint:recommended" ,
5
+ "plugin:@typescript-eslint/eslint-recommended" ,
6
+ "plugin:@typescript-eslint/recommended" ,
7
+ "plugin:prettier/recommended" ,
8
+ "prettier" ,
9
+ "prettier/@typescript-eslint" ,
10
+ ] ,
11
+ parserOptions : {
12
+ ecmaVersion : 2018 ,
13
+ sourceType : "module" ,
14
+ ecmaFeatures : {
15
+ jsx : true
16
+ } ,
17
+ project : "./tsconfig.json" ,
18
+ } ,
19
+ rules : { }
20
+ }
Original file line number Diff line number Diff line change 1
1
{
2
2
"printWidth": 120,
3
3
"trailingComma": "all",
4
- "semi": false
4
+ "semi": true,
5
5
}
Original file line number Diff line number Diff line change 6
6
"search.exclude" : {
7
7
"out" : true // set this to false to include "out" folder in search results
8
8
},
9
- "tslint.configFile" : " ./tslint.json" ,
10
9
"editor.tabSize" : 2 ,
11
10
"editor.rulers" : [120 ],
12
11
"editor.autoIndent" : " full" ,
Original file line number Diff line number Diff line change 39
39
"compile" : " tsc -watch -p ./" ,
40
40
"postinstall" : " node ./node_modules/vscode/bin/install" ,
41
41
"test" : " node ./node_modules/vscode/bin/test" ,
42
- "lint" : " tslint --project tsconfig.json -t stylish " ,
43
- "lint-fix" : " tslint --project tsconfig.json -t stylish --fix"
42
+ "lint" : " eslint . --ext .ts " ,
43
+ "lint-fix" : " eslint . --ext .ts --fix"
44
44
},
45
45
"devDependencies" : {
46
- "@blueprintjs/tslint-config" : " ^3.0.2" ,
47
46
"@types/mocha" : " ^8.0.3" ,
48
47
"@types/node" : " ^14.6.0" ,
48
+ "@typescript-eslint/eslint-plugin" : " ^4.1.1" ,
49
+ "@typescript-eslint/parser" : " ^4.1.1" ,
50
+ "eslint" : " ^7.9.0" ,
51
+ "eslint-config-prettier" : " ^6.11.0" ,
52
+ "eslint-plugin-prettier" : " ^3.1.4" ,
49
53
"mocha" : " ^8.1.2" ,
50
- "tslint " : " ^6 .1.3 " ,
54
+ "prettier " : " ^2 .1.2 " ,
51
55
"typescript" : " ^4.0.2" ,
52
56
"vscode" : " ^1.1.37"
53
57
},
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments