Options shared by the:
You can use some of these options in the configuration object.
CLI flag: --allow-empty-input, --aei
Stylelint does not throw an error when glob pattern matches no files.
CLI flag: --config
Path to a JSON, YAML, or JS file that contains your configuration object.
Use this option if you don't want Stylelint to search for a configuration file.
The path should be either absolute or relative to the directory that your process is running from (process.cwd()
).
CLI flag: --config-basedir
Absolute path to the directory that relative paths defining "extends", "plugins", and "customSyntax" are relative to. Only necessary if these values are relative paths.
CLI flag: --fix
Automatically fix, where possible, problems reported by rules.
For CSS with standard syntax, Stylelint uses postcss-safe-parser to fix syntax errors.
When using the Node.js API, the autofixed code is available as the value of the output
property in the returned object.
If a source contains a:
- scoped disable comment, e.g.
/* stylelint-disable indentation */
, any problems reported by the scoped rules will not be automatically fixed anywhere in the source - unscoped disable comment, i.e.
/* stylelint-disable */
, the entirety of source will not be automatically fixed
This limitation in being tracked in issue #2643.
CLI flag: --custom-syntax
Specify a custom syntax to use on your code.
There are many styling languages, ranging from CSS language extensions like SCSS to entirely different notations, e.g. CSS-in-JS objects.
These styling languages can be embedded within other languages too. For example:
- HTML
<style>
tags - markdown fences
- JavaScript template literals
This option allows Stylelint to transform these into something that resembles CSS, which is the language that:
- underpins all the other styling languages
- is best understood by rules built into Stylelint
This option should be a string that resolves to a JS module that exports a PostCSS-compatible syntax. The string can be a module name (like my-module
) or a path to a JS file (like path/to/my-module.js
).
If you want to lint two or more different languages, you can combine customSyntax
with the overrides
configuration property.
Using the Node.js API, the customSyntax
option can also accept a Syntax object. Stylelint treats the parse
property as a required value.
Note that Stylelint can provide no guarantee that core rules work with custom syntaxes.
CLI flags: --formatter, -f
| --custom-formatter
Specify the formatter to format your results.
Options are:
compact
- generates output similar to ESLint's compact formattergithub
- generates messages via workflow commands for GitHub Actionsjson
(default for Node API) - generates JSON that can be consumed by another toolstring
(default for CLI) - generates human-readable stringstap
- generates Test Anything Protocol outputunix
- generates messages like a C compiler, so that tools like Emacs' Compilation mode can hyperlink themverbose
- extendsstring
to include a list of checked files and a tally for each rule
The formatter
Node.js API option can also accept a function, whereas the --custom-formatter
CLI flag accepts a path (either a filesystem path or a dependency) to a JS file exporting one. The function in both cases must fit the signature described in the Developer Guide.
CLI flag: --cache
Store the results of processed files so that Stylelint only operates on the changed ones. By default, the cache is stored in ./.stylelintcache
in process.cwd()
.
Enabling this option can dramatically improve Stylelint's speed because only changed files are linted.
If you run Stylelint with cache
and then run Stylelint without cache
, Stylelint deletes the .stylelintcache
because we have to assume that the second command invalidated .stylelintcache
.
CLI flag: --cache-location
Path to a file or directory for the cache location.
If a directory is specified, Stylelint creates a cache file inside the specified folder. The name of the file is based on the hash of process.cwd()
(e.g. .cache_hashOfCWD
) so that Stylelint can reuse a single location for a variety of caches from different projects.
If the directory of cacheLocation
does not exist, make sure you add a trailing /
on *nix systems or \
on Windows. Otherwise, Stylelint assumes the path to be a file.
CLI flag: --cache-strategy
Strategy for the cache to use for detecting changed files. Can be either "metadata" or "content".
The "content" strategy can be useful in cases where the modification time of your files changes even if their contents have not. For example, this can happen during git operations like "git clone" because git does not track file modification time.
CLI flags: --max-warnings, --mw
Set a limit to the number of warnings accepted.
It is useful when setting defaultSeverity
to "warning"
and expecting the process to fail on warnings (e.g. CI build).
If the number of warnings exceeds this value, the:
- CLI process exits with code
2
- Node.js API adds a
maxWarningsExceeded
property to the returned data
CLI flags: --disable-default-ignores, --di
Disable the default ignores. Stylelint will not automatically ignore the contents of node_modules
.
CLI flags: --globby-options, --go
Options passed to globby. More info.
CLI flags: --ignore-path, -i
Path to a file containing patterns that describe files to ignore. The path can be absolute or relative to process.cwd()
. You can repeat the option to provide multiple paths. By default, Stylelint looks for .stylelintignore
in process.cwd()
.
CLI flags: --ignore-disables, --id
Ignore stylelint-disable
(e.g. /* stylelint-disable block-no-empty */
) comments.
You can use this option to see what your linting results would be like without those exceptions.
CLI flags: --report-descriptionless-disables, --rdd
Report stylelint-disable
comments without a description.
The following patterns are reported:
/* stylelint-disable */
a {}
/* stylelint-disable-next-line block-no-empty */
a {}
But, the following patterns (stylelint-disable -- <description>
) are not reported:
/* stylelint-disable -- This problem is ignorable. */
a {}
/* stylelint-disable-next-line block-no-empty -- This problem is ignorable. */
a {}
CLI flags: --report-invalid-scope-disables, --risd
Report stylelint-disable
comments that don't match rules that are specified in the configuration object.
CLI flags: --report-needless-disables, --rd
Report stylelint-disable
comments that don't actually match any lints that need to be disabled.
CLI flag: --stdin-filename
A filename to assign the input.
If using code
or stdin
to pass a source string directly, you can use codeFilename
to associate that code with a particular filename.
CLI flag: --quiet
Only register problems for rules with an "error"-level severity (ignore "warning"-level).