1
- // Place your settings in this file to overwrite default and user settings.
2
1
{
3
- "files.exclude" : {
4
- "out" : false // set this to true to hide the "out" folder with the compiled JS files
5
- },
6
- "search.exclude" : {
7
- "out" : true // set this to false to include "out" folder in search results
8
- },
9
- // Turn off tsc task auto detection since we have the necessary tasks as npm scripts
10
- "typescript.tsc.autoDetect" : " off"
11
- }
2
+ //////////////////////////////////////
3
+ // TypeScript
4
+ //////////////////////////////////////
5
+ // Turn off tsc task auto detection since we have the necessary tasks as npm scripts
6
+ "typescript.tsc.autoDetect" : " off" ,
7
+ //////////////////////////////////////
8
+ // Files & Folders
9
+ //////////////////////////////////////
10
+ "files.exclude" : {
11
+ "out" : false // set this to true to hide the "out" folder with the compiled JS files
12
+ },
13
+ "search.exclude" : {
14
+ "out" : true // set this to false to include "out" folder in search results
15
+ },
16
+ //////////////////////////////////////
17
+ // Editor
18
+ //////////////////////////////////////
19
+ "editor.tabSize" : 4 ,
20
+ "editor.insertSpaces" : true ,
21
+ "editor.detectIndentation" : false ,
22
+ "editor.wordWrap" : " wordWrapColumn" ,
23
+ "editor.wordWrapColumn" : 100 , // toggle via Alt + Z shortcut
24
+ "editor.mouseWheelZoom" : true ,
25
+ "editor.rulers" : [
26
+ {
27
+ "column" : 80 , // soft limit
28
+ "color" : " #e5e5e5"
29
+ },
30
+ {
31
+ "column" : 100 , // hard limit
32
+ "color" : " #c9c9c9"
33
+ }
34
+ ],
35
+ //////////////////////////////////////
36
+ // Git
37
+ //////////////////////////////////////
38
+ "git.inputValidation" : true ,
39
+ "git.inputValidationSubjectLength" : 50 ,
40
+ "git.inputValidationLength" : 72 ,
41
+ //////////////////////////////////////
42
+ // Spell Checker
43
+ //////////////////////////////////////
44
+ "cSpell.words" : [
45
+ " ansi" ,
46
+ " Ansi" ,
47
+ " autoplay" ,
48
+ " github" ,
49
+ " ipython" ,
50
+ " Keybord" ,
51
+ " Logfile" ,
52
+ " manim" ,
53
+ " Manim" ,
54
+ " MANIM" ,
55
+ " manimgl" ,
56
+ " Sanderson's" ,
57
+ " youtube"
58
+ ]
59
+ }
0 commit comments