Skip to content

Commit

Permalink
chore(vscode): update settings
Browse files Browse the repository at this point in the history
Signed-off-by: Lexus Drumgold <unicornware@flexdevelopment.llc>
  • Loading branch information
unicornware committed Jan 1, 2023
1 parent 04dfd21 commit c3bda83
Showing 1 changed file with 108 additions and 9 deletions.
117 changes: 108 additions & 9 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"[dotenv]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"[handlebars]": {
"editor.defaultFormatter": "Greenbyte.handlebars-preview",
"editor.rulers": [
Expand Down Expand Up @@ -38,6 +41,7 @@
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"[shellscript]": {
"editor.defaultFormatter": "foxundermoon.shell-format",
"editor.rulers": [
{
"color": "var(--vscode-editorRuler-foreground)",
Expand All @@ -58,7 +62,57 @@
"editor.wordWrapColumn": 100,
"rewrap.wrappingColumn": 100
},
"better-comments.highlightPlainText": true,
"better-comments.tags": [
{
"backgroundColor": "transparent",
"bold": false,
"color": "#ff2d00",
"italic": false,
"strikethrough": false,
"tag": "!",
"underline": false
},
{
"backgroundColor": "transparent",
"bold": false,
"color": "#3498db",
"italic": false,
"strikethrough": false,
"tag": "?",
"underline": false
},
{
"backgroundColor": "transparent",
"bold": false,
"color": "#474747",
"italic": false,
"strikethrough": true,
"tag": "//",
"underline": false
},
{
"backgroundColor": "transparent",
"bold": false,
"color": "#ff8c00",
"italic": false,
"strikethrough": false,
"tag": "todo",
"underline": false
},
{
"backgroundColor": "transparent",
"bold": false,
"color": "#98c379",
"italic": false,
"strikethrough": false,
"tag": "*",
"underline": false
}
],
"breadcrumbs.enabled": true,
"cSpell.enabled": true,
"debug.showBreakpointsInOverviewRuler": true,
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.renderSideBySide": false,
"editor.acceptSuggestionOnEnter": "smart",
Expand All @@ -72,13 +126,13 @@
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.detectIndentation": false,
"editor.renderFinalNewline": false,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.guides.indentation": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.overviewRulerBorder": true,
"editor.renderFinalNewline": "off",
"editor.rulers": [
{
// microsoft/vscode#166261
Expand All @@ -95,8 +149,10 @@
},
"emmet.showExpandedAbbreviation": "always",
"emmet.triggerExpansionOnTab": true,
"eslint.alwaysShowStatus": true,
"eslint.enable": true,
"eslint.nodePath": "./node_modules/eslint",
"eslint.lintTask.enable": true,
"eslint.nodePath": "node_modules/.bin/eslint",
"eslint.options": {
"extensions": [
"cjs",
Expand All @@ -109,8 +165,9 @@
"ts",
"yml"
],
"overrideConfigFile": "./.eslintrc.cjs"
"overrideConfigFile": ".eslintrc.cjs"
},
"eslint.packageManager": "yarn",
"eslint.validate": [
"graphql",
"javascript",
Expand All @@ -124,6 +181,7 @@
"*.snap": "jest-snapshot",
".env.zsh": "shellscript",
".markdownlintignore": "ignore",
".npmrc": "ini",
"commit-msg": "shellscript",
"pre-commit": "shellscript",
"pre-push": "shellscript"
Expand All @@ -137,9 +195,24 @@
"files.trimTrailingWhitespace": true,
"git.autofetch": true,
"git.enableSmartCommit": true,
"githubPullRequests.pullBranch": "never",
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": false,
"javascript.format.semicolons": "remove",
"javascript.inlayHints.enumMemberValues.enabled": true,
"javascript.preferences.importModuleSpecifierEnding": "minimal",
"javascript.preferences.quoteStyle": "single",
"javascript.preferences.useAliasesForRenames": true,
"javascript.suggest.completeFunctionCalls": true,
"javascript.suggest.completeJSDocs": true,
"javascript.suggest.includeAutomaticOptionalChainCompletions": true,
"javascript.suggest.includeCompletionsForImportStatements": true,
"javascript.suggest.jsdoc.generateReturns": true,
"javascript.suggest.paths": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"javascript.validate.enable": true,
"markdown.extension.toc.slugifyMode": "github",
"markdown.extension.toc.updateOnSave": false,
"markdownlint.ignore": "./.markdownlintignore",
"markdownlint.ignore": ".markdownlintignore",
"markdownlint.lintWorkspaceGlobs": [
"**/*.md",
"!**/node_modules",
Expand All @@ -148,15 +221,39 @@
"!**/LICENSE.md"
],
"npm-intellisense.scanDevDependencies": true,
"prettier.configPath": ".prettierrc.json",
"prettier.enable": false,
"prettier.useEditorConfig": false,
"prettier.prettierPath": "node_modules/prettier",
"prettier.useEditorConfig": true,
"rewrap.autoWrap.enabled": true,
"rewrap.doubleSentenceSpacing": true,
"rewrap.reformat": true,
"rewrap.wrappingColumn": 80,
"shellformat.flag": "-ci -fn -i=2 -sr",
"shellformat.useEditorConfig": true,
"terminal.integrated.copyOnSelection": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": false,
"typescript.format.insertSpaceAfterTypeAssertion": true,
"typescript.format.semicolons": "remove",
"typescript.inlayHints.enumMemberValues.enabled": true,
"typescript.preferences.importModuleSpecifierEnding": "minimal",
"typescript.preferences.quoteStyle": "single",
"typescript.preferences.useAliasesForRenames": true,
"typescript.suggest.completeFunctionCalls": true,
"typescript.suggest.completeJSDocs": true,
"typescript.tsdk": "./node_modules/typescript/lib",
"typescript.suggest.includeAutomaticOptionalChainCompletions": true,
"typescript.suggest.includeCompletionsForImportStatements": true,
"typescript.suggest.jsdoc.generateReturns": true,
"typescript.suggest.paths": true,
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.tsserver.log": "verbose",
"typescript.updateImportsOnFileMove.enabled": "always",
"versionlens.npm.dependencyProperties": ["dependencies", "devDependencies"],
"typescript.validate.enable": true,
"versionlens.npm.dependencyProperties": [
"dependencies",
"devDependencies",
"resolutions"
],
"vsicons.associations.files": [
{
"extensions": [".eslintrc.base.cjs"],
Expand Down Expand Up @@ -211,9 +308,11 @@
"icon": "typings"
}
],
"workbench.editor.closeOnFileDelete": true,
"workbench.editor.enablePreview": false,
"workbench.iconTheme": "vscode-icons",
"yaml.schemas": {
"https://json.schemastore.org/github-issue-config": "/.github/ISSUE_TEMPLATE/config.yml",
"https://json.schemastore.org/github-workflow": "/.github/workflows/*.yml"
"https://json.schemastore.org/github-issue-config": ".github/ISSUE_TEMPLATE/config.yml",
"https://json.schemastore.org/github-workflow": ".github/workflows/*.yml"
}
}

0 comments on commit c3bda83

Please sign in to comment.