File tree Expand file tree Collapse file tree 6 files changed +312
-4184
lines changed Expand file tree Collapse file tree 6 files changed +312
-4184
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "root" : true ,
3
- "parser" : " @typescript-eslint/parser" ,
4
- "parserOptions" : {
5
- "ecmaVersion" : 6 ,
6
- "sourceType" : " module"
7
- },
8
- "plugins" : [
9
- " @typescript-eslint"
10
- ],
11
- "rules" : {
12
- "@typescript-eslint/naming-convention" : " warn" ,
13
- "@typescript-eslint/semi" : " warn" ,
14
- "curly" : " warn" ,
15
- "eqeqeq" : " warn" ,
16
- "no-throw-literal" : " warn" ,
17
- "semi" : " off"
18
- },
19
- "ignorePatterns" : [
20
- " out" ,
21
- " dist" ,
22
- " **/*.d.ts"
23
- ]
2
+ "root" : true ,
3
+ "parser" : " @typescript-eslint/parser" ,
4
+ "parserOptions" : {
5
+ "ecmaVersion" : 6 ,
6
+ "sourceType" : " module"
7
+ },
8
+ "plugins" : [
9
+ " @typescript-eslint"
10
+ ],
11
+ "rules" : {
12
+ "@typescript-eslint/naming-convention" : " warn" ,
13
+ "@typescript-eslint/semi" : " warn" ,
14
+ "curly" : " warn" ,
15
+ "eqeqeq" : " warn" ,
16
+ "no-throw-literal" : " warn" ,
17
+ "semi" : " off"
18
+ },
19
+ "ignorePatterns" : [
20
+ " out" ,
21
+ " dist" ,
22
+ " **/*.d.ts"
23
+ ]
24
24
}
Original file line number Diff line number Diff line change 2
2
// See http://go.microsoft.com/fwlink/?LinkId=827846
3
3
// for the documentation about the extensions.json format
4
4
"recommendations" : [
5
- " dbaeumer.vscode-eslint" ,
6
- " eamodio.tsl-problem-matcher"
5
+ " dbaeumer.vscode-eslint"
7
6
]
8
7
}
Original file line number Diff line number Diff line change 1
1
// Place your settings in this file to overwrite default and user settings.
2
2
{
3
- "files.exclude" : {
4
- "out" : false , // set this to true to hide the "out" folder with the compiled JS files
5
- "dist" : false // set this to true to hide the "dist" folder with the compiled JS files
6
- },
7
- "search.exclude" : {
8
- "out" : true , // set this to false to include "out" folder in search results
9
- "dist" : true // set this to false to include "dist" folder in search results
10
- },
11
- // Turn off tsc task auto detection since we have the necessary tasks as npm scripts
12
- "typescript.tsc.autoDetect" : " off"
13
- }
3
+ "files.exclude" : {
4
+ "out" : false , // set this to true to hide the "out" folder with the compiled JS files
5
+ "dist" : false // set this to true to hide the "dist" folder with the compiled JS files
6
+ },
7
+ "search.exclude" : {
8
+ "out" : true , // set this to false to include "out" folder in search results
9
+ "dist" : true // set this to false to include "dist" folder in search results
10
+ },
11
+ // Turn off tsc task auto detection since we have the necessary tasks as npm scripts
12
+ "typescript.tsc.autoDetect" : " off"
13
+ }
You can’t perform that action at this time.
0 commit comments