Skip to content

Commit

Permalink
Add support for import aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
niksy committed Jan 8, 2025
1 parent 0e7484c commit 946d5b0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions LSP-some-sass.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"settings": {
"somesass.workspace.exclude": ["**/.git/**", "**/node_modules/**"],
"somesass.workspace.loadPaths": [],
"somesass.workspace.importAliases": {},
"somesass.workspace.logLevel": "info",
"somesass.css.codeAction.enabled": true,
"somesass.css.completion.enabled": true,
Expand Down
5 changes: 5 additions & 0 deletions sublime-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@
"default": [],
"description": "A list of paths relative to the workspace root where the language server should look for stylesheets loaded by @use and @import. node_modules is always included. Note that you will have to configure your Sass compiler separately."
},
"somesass.workspace.importAliases": {
"type": "object",
"default": {},
"description": "A list of aliases where the language server should map for stylesheets loaded by @use and @import. Note that you will have to configure your Sass compiler separately."
},
"somesass.workspace.logLevel": {
"type": "string",
"default": "info",
Expand Down

0 comments on commit 946d5b0

Please sign in to comment.