Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

December #274

Merged
merged 8 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/src/language-server/settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ For brevity the ID column omits the `somesass.scss` prefix. For example, to use
| `diagnostics.deprecation.enabled` | Enable or disable deprecation diagnostics (strike-through). | `true` |
| `diagnostics.lint.enabled` | Enable or disable all linting. | `true` |
| `diagnostics.lint.*` | For the available lint rules and what they do, see the [VS Code docs for CSS and SCSS lint settings](https://code.visualstudio.com/docs/languages/css#_customizing-css-scss-and-less-settings) | |
| `documentSymbol.enabled` | Enable or disable document/editor symbols. | `true` |
| `foldingRanges.enabled` | Enable or disable folding ranges. | `true` |
| `highlights.enabled` | Enable or disable highlights. | `true` |
| `hover.enabled` | Enable or disable all hover information. | `true` |
Expand Down
3 changes: 3 additions & 0 deletions docs/src/user-guide/settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ Now that you disabled the built-in language features you need to turn on those l
"somesass.css.completion.enabled": true,
"somesass.css.definition.enabled": true,
"somesass.css.diagnostics.enabled": true,
"somesass.css.documentSymbols.enabled": true,
"somesass.css.foldingRanges.enabled": true,
"somesass.css.highlights.enabled": true,
"somesass.css.hover.enabled": true,
Expand All @@ -67,6 +68,7 @@ Now that you disabled the built-in language features you need to turn on those l
"somesass.scss.definition.enabled": true,
"somesass.scss.diagnostics.enabled": true,
"somesass.scss.diagnostics.lint.enabled": true,
"somesass.scss.documentSymbols.enabled": true,
"somesass.scss.foldingRanges.enabled": true,
"somesass.scss.highlights.enabled": true,
"somesass.scss.hover.enabled": true,
Expand Down Expand Up @@ -113,6 +115,7 @@ For brevity the ID column omits the `somesass.scss` prefix. For example, to use
| `diagnostics.deprecation.enabled` | Enable or disable deprecation diagnostics (strike-through). | `true` |
| `diagnostics.lint.enabled` | Enable or disable all linting. | `false` |
| `diagnostics.lint.*` | For the available lint rules and what they do, see the [VS Code docs for CSS and SCSS lint settings](https://code.visualstudio.com/docs/languages/css#_customizing-css-scss-and-less-settings) | |
| `documentSymbols.enabled` | Enable or disable document/editor symbols. | `false` |
| `foldingRanges.enabled` | Enable or disable folding ranges. | `false` |
| `highlights.enabled` | Enable or disable highlights. | `false` |
| `hover.enabled` | Enable or disable all hover information. | `true` |
Expand Down
Loading
Loading