Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Oct 26, 2024
1 parent 90af188 commit 184099e
Showing 1 changed file with 3 additions and 38 deletions.
41 changes: 3 additions & 38 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
{
// Disable the default formatter, use eslint instead
"prettier.enable": false,
"biome.enabled": false,
"editor.formatOnSave": false,

// Auto fix
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},

// Silent the stylistic rules in you IDE, but still auto fix them
"eslint.rules.customizations": [
{ "rule": "style/*", "severity": "off", "fixable": true },
{ "rule": "format/*", "severity": "off", "fixable": true },
Expand All @@ -24,12 +21,9 @@
{ "rule": "*semi", "severity": "off", "fixable": true }
],

// Enable eslint for all supported languages
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
"markdown",
Expand All @@ -38,30 +32,19 @@
"yaml",
"toml",
"xml",
"gql",
"graphql",
"astro",
"svelte",
"css",
"less",
"scss",
"pcss",
"postcss"
],

"[stx]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},

// TypeScript
"typescript.tsdk": "${workspaceFolder}/node_modules/typescript/lib",
"unocss.root": "${workspaceFolder}/storage/framework/core/ui/src/uno.config.ts",
// Shell

"[shellscript]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
},

// Markdown
"[markdown]": {
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint",
"editor.formatOnSave": true
Expand All @@ -71,23 +54,6 @@
"editor.defaultFormatter": "foxundermoon.shell-format"
},

"markdownlint.config": {
"default": true,
"MD033": {
"allowed_elements": [
"details",
"summary",
"VPTeamPage",
"VPTeamPageTitle",
"VPTeamMembers",
"script"
]
},
"MD041": false
},

// Stacks
"vue.inlayHints.missingProps": true,
"typescript.preferGoToSourceDefinition": true,
"files.associations": {
"buddy": "typescript",
Expand Down Expand Up @@ -117,8 +83,7 @@
"explorer.confirmDragAndDrop": false,
"todo-tree.highlights.enabled": true,
"cSpell.ignorePaths": [
"node_modules",
"lang/de.yml"
"node_modules"
],
"cSpell.dictionaries": [
"custom-dictionary"
Expand All @@ -131,7 +96,7 @@
"scope": "user",
"addWords": true
},
"custom": true // enable the `custom` dictionary
"custom": true
},
"terminal.integrated.scrollback": 10000,
"grammarly.files.include": [
Expand Down

0 comments on commit 184099e

Please sign in to comment.