-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathe-chess.code-workspace
More file actions
38 lines (38 loc) · 921 Bytes
/
e-chess.code-workspace
File metadata and controls
38 lines (38 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"folders": [
{
"path": ".",
"name": "E-Chess"
},
{
"path": "./firmware",
"name": "Rust firmware"
},
{
"path": "./chess-game",
"name": "Rust Chess game lib"
},
{
"path": "./scad",
"name": "OpenSCAD 3D model"
},
{
"path": "./electronics",
"name": "Electronics"
},
{
"path": "./app",
"name": "Android App"
}
],
"settings": {
"cSpell.words": [
"bitboard"
],
// This screws up internal terminal colors needed for the debug output of the chess game.
"terminal.integrated.minimumContrastRatio": 1,
"debug.allowBreakpointsEverywhere": true,
"scad-lsp.fmtStyle": "WebKit",
"editor.formatOnSave": true
}
}