Add options

This commit is contained in:
CanbiZ
2025-03-03 12:57:49 +01:00
parent 6ee3b1c05a
commit f25b57510c
14 changed files with 283 additions and 396 deletions

1
.vscode/.shellcheckrc vendored Normal file
View File

@@ -0,0 +1 @@
disable=SC2034,SC1091,SC2155,SC2086,SC2317,SC2181

16
.vscode/settings.json vendored
View File

@@ -8,7 +8,6 @@
"files.insertFinalNewline": true,
"files.autoSave": "afterDelay",
"files.autoGuessEncoding": false,
"editor.detectIndentation": false,
"editor.tabSize": 4,
"editor.insertSpaces": true,
@@ -17,23 +16,20 @@
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.minimap.enabled": false,
"terminal.integrated.shell.linux": "/bin/bash",
"terminal.integrated.scrollback": 10000,
"[shellscript]": {
"editor.defaultFormatter": "foxundermoon.shell-format",
"editor.tabSize": 4,
"editor.insertSpaces": true
"editor.insertSpaces": true,
},
"shellcheck.customArgs": [
"--rcfile",
".vscode/.shellcheckrc"
],
"workbench.colorTheme": "Default Dark+",
"workbench.iconTheme": "vscode-icons",
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"extensions.ignoreRecommendations": false,
"security.workspace.trust.untrustedFiles": "open"
"extensions.ignoreRecommendations": false
}