Expand file tree Collapse file tree 5 files changed +526
-521
lines changed Original file line number Diff line number Diff line change 2
2
"editor.formatOnSave" : true ,
3
3
"eslint.autoFixOnSave" : true ,
4
4
"eslint.validate" : [" javascript" , { "language" : " typescript" , "autoFix" : true }],
5
- "[javascript]" : {
6
- "editor.formatOnSave" : false
7
- },
8
- "[typescript]" : {
9
- "editor.formatOnSave" : false
10
- },
11
5
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
12
6
"files.exclude" : {
13
7
"build" : false // set this to true to hide the "out" folder with the compiled JS files
21
15
"titleBar.activeBackground" : " #000000" ,
22
16
"titleBar.activeForeground" : " #FFFFFF"
23
17
},
24
- "cSpell.ignoreWords" : [
25
- " camelcase"
26
- ]
18
+ "cSpell.ignoreWords" : [" camelcase" ]
27
19
}
Original file line number Diff line number Diff line change @@ -3,21 +3,21 @@ import * as G from 'typings/graphql'
3
3
const languageMap : {
4
4
[ lang : string ] : G . FileFormat
5
5
} = {
6
- // go: 'GO',
6
+ go : 'GO' ,
7
7
javascript : 'JS' ,
8
8
javascriptreact : 'JSX' ,
9
9
json : 'JSON' ,
10
- // less: 'LESS',
11
- // lua: 'LUA',
12
- // php: 'PHP',
13
- // python: 'PY',
14
- // ruby: 'RB',
15
- // sass: 'SASS',
16
- // scss: 'SCSS',
17
- // sql: 'SQL',
10
+ less : 'LESS' ,
11
+ lua : 'LUA' ,
12
+ php : 'PHP' ,
13
+ python : 'PY' ,
14
+ ruby : 'RB' ,
15
+ sass : 'SASS' ,
16
+ scss : 'SCSS' ,
17
+ sql : 'SQL' ,
18
18
typescript : 'TS' ,
19
19
typescriptreact : 'TSX' ,
20
- // yaml: 'YAML'
20
+ yaml : 'YAML' ,
21
21
}
22
22
23
23
export default languageMap
There was a problem loading the remainder of the diff.
0 commit comments