Integrates StLint into VS Code. If you are new to StLint check the documentation.
The extension uses the StLint library installed in the opened workspace folder. If the folder doesn't provide one the extension looks for a global install version. If you haven't installed StLint either locally or globally do so by running npm install stlint
in the workspace folder for a local install or npm install -g stlint
for a global install.
On new folders you might also need to create a .stlintrc
configuration file. The extension will search for an .stlintrc
file on the workspace folder root.
- Press Ctrl + P to open the Go to File... view
- Type
ext install xdan.stlint-vscode-plugin
and press Enter
- Download the
.vsix
file of the latest release from GitHub - Run
code --install-extension stlint-vscode-plugin-*.*.*.vsix
in the command line (reference)
This extension contributes the following variables to the settings:
-
stlint.enable
: enable/disable stlint. Is enabled by default. -
stlint.stlintrcPath
: The path to the.stlintrc
file. When no.stlintrc
file is found the default options are used. -
stlint.packageManager
: controls the package manager to be used to resolve the Stlint library. This has only an influence if the Stlint library is resolved globally. Valid values are "npm" or "yarn". -
stlint.run
: run the linteronSave
oronType
, default isonType
. -
stlint.nodePath
: use this setting if an installed Stlint package can't be detected, for example/myGlobalNodePackages/node_modules
. -
stlint.alwaysShowStatus
: Always show the Stlint status bar item. -
stlint.trace.server
: Traces the communication between VSCode and the stlint linter service. -
stlint.workingDirectories
- an array for working directories to be used. Stlint resolves configuration files relative to a working directory. This new settings allows users to control which working directory is used for which files. Consider the following setups:client/ .stlintignore .stlintrc client.styl server/ .stlintignore .stlintrc server.styl
Then using the setting:
"stlint.workingDirectories": [ "./client", "./server" ]
will validate files inside the server directory with the server directory as the current working directory. Same for files in the client directory. If the setting is omitted the working directory is the workspace folder.
The setting also supports literals of the form
{ "directory": string, "changeProcessCWD": boolean }
as elements. Use this form if you want to instruct Stlint to change the current working directory of the Stlint validation process to the value ofdirectory
as well.
This extension contributes the following commands to the Command palette.
Disable Stlint for this Workspace
: disables Stlint extension for this workspace.Enable Stlint for this Workspace
: enable Stlint extension for this workspace.stylint.showOutputChannel
: show the output channel of the Stlint extension.
If you found a bug or are missing a feature do not hesitate to file an issue.
Pull Requests are welcome!
When you like this extension make sure to star the repo and write a review. I am always looking for new ideas and feedback.