|
62 | 62 | "editor.wordWrapColumn": 100,
|
63 | 63 | "rewrap.wrappingColumn": 100
|
64 | 64 | },
|
| 65 | + "better-comments.highlightPlainText": true, |
| 66 | + "better-comments.tags": [ |
| 67 | + { |
| 68 | + "backgroundColor": "transparent", |
| 69 | + "bold": false, |
| 70 | + "color": "#ff2d00", |
| 71 | + "italic": false, |
| 72 | + "strikethrough": false, |
| 73 | + "tag": "!", |
| 74 | + "underline": false |
| 75 | + }, |
| 76 | + { |
| 77 | + "backgroundColor": "transparent", |
| 78 | + "bold": false, |
| 79 | + "color": "#3498db", |
| 80 | + "italic": false, |
| 81 | + "strikethrough": false, |
| 82 | + "tag": "?", |
| 83 | + "underline": false |
| 84 | + }, |
| 85 | + { |
| 86 | + "backgroundColor": "transparent", |
| 87 | + "bold": false, |
| 88 | + "color": "#474747", |
| 89 | + "italic": false, |
| 90 | + "strikethrough": true, |
| 91 | + "tag": "//", |
| 92 | + "underline": false |
| 93 | + }, |
| 94 | + { |
| 95 | + "backgroundColor": "transparent", |
| 96 | + "bold": false, |
| 97 | + "color": "#ff8c00", |
| 98 | + "italic": false, |
| 99 | + "strikethrough": false, |
| 100 | + "tag": "todo", |
| 101 | + "underline": false |
| 102 | + }, |
| 103 | + { |
| 104 | + "backgroundColor": "transparent", |
| 105 | + "bold": false, |
| 106 | + "color": "#98c379", |
| 107 | + "italic": false, |
| 108 | + "strikethrough": false, |
| 109 | + "tag": "*", |
| 110 | + "underline": false |
| 111 | + } |
| 112 | + ], |
| 113 | + "breadcrumbs.enabled": true, |
65 | 114 | "cSpell.enabled": true,
|
66 | 115 | "debug.showBreakpointsInOverviewRuler": true,
|
67 | 116 | "diffEditor.ignoreTrimWhitespace": false,
|
|
77 | 126 | },
|
78 | 127 | "editor.defaultFormatter": "esbenp.prettier-vscode",
|
79 | 128 | "editor.detectIndentation": false,
|
80 |
| - "editor.renderFinalNewline": "off", |
81 | 129 | "editor.formatOnPaste": true,
|
82 | 130 | "editor.formatOnSave": true,
|
83 | 131 | "editor.formatOnType": true,
|
84 | 132 | "editor.guides.indentation": true,
|
85 | 133 | "editor.multiCursorModifier": "ctrlCmd",
|
86 | 134 | "editor.overviewRulerBorder": true,
|
| 135 | + "editor.renderFinalNewline": "off", |
87 | 136 | "editor.rulers": [
|
88 | 137 | {
|
89 | 138 | // microsoft/vscode#166261
|
|
100 | 149 | },
|
101 | 150 | "emmet.showExpandedAbbreviation": "always",
|
102 | 151 | "emmet.triggerExpansionOnTab": true,
|
| 152 | + "eslint.alwaysShowStatus": true, |
103 | 153 | "eslint.enable": true,
|
104 |
| - "eslint.nodePath": "node_modules/eslint", |
| 154 | + "eslint.lintTask.enable": true, |
| 155 | + "eslint.nodePath": "node_modules/.bin/eslint", |
105 | 156 | "eslint.options": {
|
106 | 157 | "extensions": [
|
107 | 158 | "cjs",
|
|
116 | 167 | ],
|
117 | 168 | "overrideConfigFile": ".eslintrc.cjs"
|
118 | 169 | },
|
| 170 | + "eslint.packageManager": "yarn", |
119 | 171 | "eslint.validate": [
|
120 | 172 | "graphql",
|
121 | 173 | "javascript",
|
|
129 | 181 | "*.snap": "jest-snapshot",
|
130 | 182 | ".env.zsh": "shellscript",
|
131 | 183 | ".markdownlintignore": "ignore",
|
| 184 | + ".npmrc": "ini", |
132 | 185 | "commit-msg": "shellscript",
|
133 | 186 | "pre-commit": "shellscript",
|
134 | 187 | "pre-push": "shellscript"
|
|
142 | 195 | "files.trimTrailingWhitespace": true,
|
143 | 196 | "git.autofetch": true,
|
144 | 197 | "git.enableSmartCommit": true,
|
| 198 | + "githubPullRequests.pullBranch": "never", |
| 199 | + "javascript.format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": false, |
| 200 | + "javascript.format.semicolons": "remove", |
| 201 | + "javascript.inlayHints.enumMemberValues.enabled": true, |
| 202 | + "javascript.preferences.importModuleSpecifierEnding": "minimal", |
| 203 | + "javascript.preferences.quoteStyle": "single", |
| 204 | + "javascript.preferences.useAliasesForRenames": true, |
| 205 | + "javascript.suggest.completeFunctionCalls": true, |
| 206 | + "javascript.suggest.completeJSDocs": true, |
| 207 | + "javascript.suggest.includeAutomaticOptionalChainCompletions": true, |
| 208 | + "javascript.suggest.includeCompletionsForImportStatements": true, |
| 209 | + "javascript.suggest.jsdoc.generateReturns": true, |
| 210 | + "javascript.suggest.paths": true, |
| 211 | + "javascript.updateImportsOnFileMove.enabled": "always", |
| 212 | + "javascript.validate.enable": true, |
145 | 213 | "markdown.extension.toc.slugifyMode": "github",
|
146 | 214 | "markdown.extension.toc.updateOnSave": false,
|
147 | 215 | "markdownlint.ignore": ".markdownlintignore",
|
|
157 | 225 | "prettier.enable": false,
|
158 | 226 | "prettier.prettierPath": "node_modules/prettier",
|
159 | 227 | "prettier.useEditorConfig": true,
|
| 228 | + "rewrap.autoWrap.enabled": true, |
| 229 | + "rewrap.doubleSentenceSpacing": true, |
| 230 | + "rewrap.reformat": true, |
| 231 | + "rewrap.wrappingColumn": 80, |
160 | 232 | "shellformat.flag": "-ci -fn -i=2 -sr",
|
161 | 233 | "shellformat.useEditorConfig": true,
|
| 234 | + "terminal.integrated.copyOnSelection": true, |
| 235 | + "typescript.format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": false, |
| 236 | + "typescript.format.insertSpaceAfterTypeAssertion": true, |
| 237 | + "typescript.format.semicolons": "remove", |
| 238 | + "typescript.inlayHints.enumMemberValues.enabled": true, |
| 239 | + "typescript.preferences.importModuleSpecifierEnding": "minimal", |
| 240 | + "typescript.preferences.quoteStyle": "single", |
| 241 | + "typescript.preferences.useAliasesForRenames": true, |
162 | 242 | "typescript.suggest.completeFunctionCalls": true,
|
163 | 243 | "typescript.suggest.completeJSDocs": true,
|
| 244 | + "typescript.suggest.includeAutomaticOptionalChainCompletions": true, |
| 245 | + "typescript.suggest.includeCompletionsForImportStatements": true, |
| 246 | + "typescript.suggest.jsdoc.generateReturns": true, |
| 247 | + "typescript.suggest.paths": true, |
164 | 248 | "typescript.tsdk": "node_modules/typescript/lib",
|
| 249 | + "typescript.tsserver.log": "verbose", |
165 | 250 | "typescript.updateImportsOnFileMove.enabled": "always",
|
| 251 | + "typescript.validate.enable": true, |
166 | 252 | "versionlens.npm.dependencyProperties": [
|
167 | 253 | "dependencies",
|
168 | 254 | "devDependencies",
|
|
232 | 318 | "icon": "typings"
|
233 | 319 | }
|
234 | 320 | ],
|
| 321 | + "workbench.editor.closeOnFileDelete": true, |
| 322 | + "workbench.editor.enablePreview": false, |
235 | 323 | "workbench.iconTheme": "vscode-icons",
|
236 | 324 | "yaml.schemas": {
|
237 | 325 | "https://json.schemastore.org/github-issue-config": ".github/ISSUE_TEMPLATE/config.yml",
|
|
0 commit comments