Skip to content

Commit c44edcd

Browse files
authored
Add many new settings to VSCode workspace (#75)
1 parent 7381824 commit c44edcd

File tree

2 files changed

+60
-11
lines changed

2 files changed

+60
-11
lines changed

.vscode/extensions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// for the documentation about the extensions.json format
44
"recommendations": [
55
"dbaeumer.vscode-eslint",
6-
"ms-vscode.extension-test-runner"
6+
"ms-vscode.extension-test-runner",
7+
"streetsidesoftware.code-spell-checker"
78
]
89
}

.vscode/settings.json

Lines changed: 58 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,59 @@
1-
// Place your settings in this file to overwrite default and user settings.
21
{
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

Comments
 (0)