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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
| { "[ignore]": { "editor.defaultFormatter": "lkrms.inifmt" }, "[ini]": { "editor.defaultFormatter": "lkrms.inifmt" }, "[lua]": { "editor.defaultFormatter": "JohnnyMorganz.stylua" }, "[luau]": { "editor.defaultFormatter": "JohnnyMorganz.stylua" }, "[markdown]": { "editor.defaultFormatter": "yzhang.markdown-all-in-one", "editor.formatOnSave": true, "editor.quickSuggestions": { "comments": "off", "other": "off", "strings": "off" }, "editor.wordWrap": "on" }, "[nginx]": { "editor.defaultFormatter": "ahmadalli.vscode-nginx-conf" }, "[shellscript]": { "editor.defaultFormatter": "foxundermoon.shell-format" }, "[yaml]": { "editor.defaultFormatter": "redhat.vscode-yaml", "editor.detectIndentation": false, "editor.formatOnSave": true, "editor.insertSpaces": true, "editor.tabSize": 2 }, "[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, "editor.tabSize": 2 }, "[jsonc]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, "editor.tabSize": 2 }, "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, "editor.tabSize": 2 }, "[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, "editor.tabSize": 2 }, "[html]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true }, "[css]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true }, "[scss]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true }, "[python]": { "editor.defaultFormatter": "ms-python.black-formatter", "editor.formatOnSave": true, "editor.formatOnType": true }, "[go]": { "editor.defaultFormatter": "golang.go", "editor.formatOnSave": true }, "[rust]": { "editor.defaultFormatter": "rust-lang.rust-analyzer", "editor.formatOnSave": true }, "[terraform]": { "editor.defaultFormatter": "hashicorp.terraform" }, "[vimrc]": { "editor.defaultFormatter": null }, "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.fontFamily": "'MesloLGS NF', 'Symbols Nerd Font Mono', Menlo, Monaco, 'Courier New', monospace", "editor.fontSize": 14, "editor.formatOnSave": true, "editor.formatOnPaste": true, "editor.unicodeHighlight.allowedLocales": { "zh-hans": true }, "editor.unicodeHighlight.includeStrings": false, "editor.bracketPairColorization.enabled": true, "editor.guides.bracketPairs": true, "editor.cursorSmoothCaretAnimation": "on", "editor.minimap.enabled": false, "editor.rulers": [120], "files.autoSave": "onFocusChange", "files.trimTrailingWhitespace": true, "files.insertFinalNewline": true, "files.associations": { "*.json": "json", "*.log": "log", "*.md": "markdown", "*.toml": "toml", "*.yaml": "yaml", ".gitignore": "ignore", "gitignore": "ignore", "*.vimrc": "vimrc" }, "git.autofetch": true, "git.confirmSync": false, "git.enableSmartCommit": true, "gitlens.hovers.enabled": true, "gitlens.codeLens.enabled": true, "rainbow_csv.autodetect_separators": [",", "\t", ";", "|"], "rainbow_csv.enable_context_menu_head": true, "problems.autoReveal": false, "debug.internalConsoleOptions": "neverOpen", "security.workspace.trust.untrustedFiles": "open", "typescript.tsserver.nodePath": "/opt/homebrew/opt/node@22/bin/node", "workbench.iconTheme": "material-icon-theme", "workbench.startupEditor": "none", "prettier.singleQuote": true, "prettier.tabWidth": 2, "prettier.useTabs": false, "prettier.printWidth": 120, "editorconfig.generateAuto": true, "yaml.format.enable": true, "yaml.hover": true, "yaml.keyOrdering": false, "yaml.maxItemsComputed": 3000, "yaml.schemas": { "https://json.schemastore.org/github-workflow.json": "/*.github/workflows/*" }, "yaml.schemaStore.enable": true, "yaml.style.flowMapping": "allow", "yaml.style.flowSequence": "allow", "yaml.validate": true, "yaml.yamlVersion": "1.2", "stylua.configPath": "/opt/homebrew/bin/stylua", "python.analysis.importFormat": "relative", "go.useLanguageServer": true, "go.formatTool": "gofmt", "rust-analyzer.cargo.buildScripts.enable": true, "rust-analyzer.check.command": "clippy", "terraform.languageServer.enable": true, "terraform.languageServer.path": "/opt/homebrew/bin/terraform-ls", "terraform.codelens.referenceCount": true, "vue.codeActions.enabled": true, "vue.complete.casing.tags": "autoKebab", "shellformat.path": "/opt/homebrew/bin/shfmt", "rainbow_csv.enable_auto_csv_lint": true, "markdownlint.config": { "default": false, "MD013": false } }
|