Skip to content

Commit 5a321de

Browse files
committed
[site] replace vscode project with .vscode/settings.json
1 parent 6b07f20 commit 5a321de

6 files changed

+99
-74
lines changed

.gitattributes

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#
2+
# This file contains rules that control how Git handles binary and text files, including line endings
3+
#
4+
5+
6+
# Make sure Windows batch files preserve CR/LF line endings, otherwise they may not be able to execute. Windows
7+
# batch files require a CR/LF for labels to work properly, otherwise they may fail when labels straddle 512-byte
8+
# block boundaries. This is important when files are downloaded through a zip archive that was authored on a
9+
# Linux machine (the default behavior on GitHub)
10+
11+
* text=auto eol=lf
12+
*.bat text eol=crlf
13+
*.zig text eol=lf
14+
*.md text eol=lf

.gitignore

+3-27
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,5 @@
1-
# Node template
2-
npm-debug.log*
3-
yarn-debug.log*
4-
yarn-error.log*
5-
.grunt
6-
node_modules/
7-
jspm_packages/
8-
typings/
9-
.npm
10-
.eslintcache
11-
.node_repl_history
12-
.yarn-integrity
13-
14-
# IDE
15-
.idea/*
16-
*.iml
17-
*.sublime-*
18-
19-
# OSX
20-
.DS_Store
21-
22-
# config files
23-
.env.*
24-
!.env.example
25-
26-
# Docs Custom
1+
# Docs Custom
2+
.build/
273
.cache/
284
.netlify
29-
site/
5+
site/

.markdownlint.jsonc

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"MD013": false, // line-length: Line length
77
"MD022": false, // blanks-around-headers: Headings should be surrounded by blank lines
88
"MD024": { "siblings_only": true }, // no-duplicate-header: Multiple headings with the same content
9+
"MD029": { "style": "ordered" }, // ol-prefix: Ordered list item prefix
910
"MD031": false, // blanks-around-fences: Fenced code blocks should be surrounded by blank lines
1011
"MD032": false, // blanks-around-lists: Lists should be surrounded by blank lines
1112
"MD044": { "code_blocks": false }, // proper-names: Proper names should have the correct capitalization

.vscode/extensions.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"recommendations": [
3+
"bierner.markdown-preview-github-styles",
4+
"cgtoolbox-guillaume-jobst.houdinivexhelp",
5+
"darkriszty.markdown-table-prettify",
6+
"davidanson.vscode-markdownlint",
7+
"dbaeumer.vscode-eslint",
8+
"donjayamanne.python-environment-manager",
9+
"esbenp.prettier-vscode",
10+
"goessner.mdmath",
11+
"jebbs.markdown-extended",
12+
"melmass.vex",
13+
"mikestead.dotenv",
14+
"ms-python.python",
15+
"ms-python.vscode-pylance",
16+
"ms-vscode.powershell",
17+
"redhat.vscode-yaml",
18+
"slevesque.shader",
19+
"yzhang.markdown-all-in-one",
20+
"mechatroner.rainbow-csv",
21+
22+
// "rust-lang.rust-analyzer",
23+
// "kortina.vscode-markdown-notes",
24+
// "errata-ai.vale-server",
25+
],
26+
"unwantedRecommendations": [ ]
27+
}

.vscode/settings.json

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"files.exclude": {
3+
".build": true,
4+
"**/zig-out": true,
5+
"**/zig-cache": true,
6+
},
7+
"files.associations": {
8+
".pages": "yaml",
9+
},
10+
"yaml.schemas": {
11+
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml"
12+
},
13+
"yaml.customTags": [
14+
"!ENV scalar",
15+
"!ENV sequence",
16+
"tag:yaml.org,2002:python/name:materialx.emoji.to_svg",
17+
"tag:yaml.org,2002:python/name:materialx.emoji.twemoji",
18+
"tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format",
19+
"tag:yaml.org,2002:python/object/apply:pymdownx.arithmatex.arithmatex_inline_format mapping",
20+
"tag:yaml.org,2002:python/object/apply:pymdownx.arithmatex.arithmatex_fenced_format mapping",
21+
"tag:yaml.org,2002:python/object/apply:pymdownx.slugs.slugify mapping",
22+
],
23+
24+
"powershell.startAutomatically": true,
25+
"powershell.promptToUpdatePowerShell": true,
26+
"powershell.integratedConsole.showOnStartup": true,
27+
28+
"npm.packageManager": "npm",
29+
"eslint.enable": true,
30+
"eslint.packageManager": "npm",
31+
// "markdownlint.config": { "extends": ".markdownlint.jsonc", },
32+
"python.linting.enabled": true,
33+
34+
"workbench.colorCustomizations": {
35+
"activityBar.activeBackground": "#c073db88",
36+
"activityBar.background": "#c073db88",
37+
"activityBar.foreground": "#15202b",
38+
"activityBar.inactiveForeground": "#15202b99",
39+
"activityBarBadge.background": "#e5d19a",
40+
"activityBarBadge.foreground": "#15202b",
41+
"commandCenter.border": "#e7e7e799",
42+
"sash.hoverBorder": "#c073db88",
43+
"statusBar.background": "#ae4bd088",
44+
"statusBar.foreground": "#e7e7e7",
45+
"statusBarItem.hoverBackground": "#c073db88",
46+
"statusBarItem.remoteBackground": "#ae4bd088",
47+
"statusBarItem.remoteForeground": "#e7e7e7",
48+
"titleBar.activeBackground": "#ae4bd088",
49+
"titleBar.activeForeground": "#e7e7e7",
50+
"titleBar.inactiveBackground": "#ae4bd099",
51+
"titleBar.inactiveForeground": "#e7e7e799"
52+
},
53+
"peacock.color": "#ae4bd088",
54+
}

gamedevguide.code-workspace

-47
This file was deleted.

0 commit comments

Comments
 (0)