Skip to content

Commit

Permalink
Disable CSS variables autocomplete in JS/TS
Browse files Browse the repository at this point in the history
  • Loading branch information
karlhorky committed Feb 18, 2024
1 parent dffe3d7 commit fbab94d
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions settings/Library/Application Support/Code/User/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@
"*": true,
"plaintext": true,
"markdown": true,
"scminput": false,
"scminput": true,
"yaml": true,
"css": true,
"javascript": false,
"javascript": true,
"typescript": true,
"typescriptreact": true,
"mdx": true,
Expand All @@ -164,7 +164,7 @@
"redhat.telemetry.enabled": false,
"javascript.preferences.quoteStyle": "single",
"typescript.preferences.quoteStyle": "single",
"editor.lightbulb.enabled": false,
"editor.lightbulb.enabled": "off",
"files.associations": {
".env": "plaintext"
},
Expand Down Expand Up @@ -238,5 +238,23 @@
"yaml",
"yml",
"mdx"
],
"github.copilot.advanced": {},
"cssVariables.languages": [
"astro",
"svelte",
"vue",
"vue-html",
"vue-postcss",
"scss",
"postcss",
"less",
"css",
"html",
// "javascript",
// "javascriptreact",
// "typescript",
// "typescriptreact",
"source.css.styled"
]
}

0 comments on commit fbab94d

Please sign in to comment.