Skip to content

scss-lint

deprecated GitHub stars GitHub release (latest SemVer) GitHub last commit GitHub commit activity GitHub contributors

This linter has been deprecated.

https://github.com/sds/scss-lint#notice-consider-other-tools-before-adopting-scss-lint

You should disable scss-lint by adding it in DISABLE_LINTERS property.

It will be maintained at least until the next major release.

scss-lint documentation

scss-lint - GitHub

Configuration in MegaLinter

Variable Description Default value
CSS_SCSS_LINT_ARGUMENTS User custom arguments to add in linter CLI call
Ex: -s --foo "bar"
CSS_SCSS_LINT_COMMAND_REMOVE_ARGUMENTS User custom arguments to remove from command line before calling the linter
Ex: -s --foo "bar"
CSS_SCSS_LINT_FILTER_REGEX_INCLUDE Custom regex including filter
Ex: (src\|lib)
Include every file
CSS_SCSS_LINT_FILTER_REGEX_EXCLUDE Custom regex excluding filter
Ex: (test\|examples)
Exclude no file
CSS_SCSS_LINT_CLI_LINT_MODE Override default CLI lint mode
- file: Calls the linter for each file
- project: Call the linter from the root of the project
file
CSS_SCSS_LINT_FILE_EXTENSIONS Allowed file extensions. "*" matches any extension, "" matches empty extension. Empty list excludes all files
Ex: [".py", ""]
[".scss", ".saas"]
CSS_SCSS_LINT_FILE_NAMES_REGEX File name regex filters. Regular expression list for filtering files by their base names using regex full match. Empty list includes all files
Ex: ["Dockerfile(-.+)?", "Jenkinsfile"]
Include every file
CSS_SCSS_LINT_PRE_COMMANDS List of bash commands to run before the linter None
CSS_SCSS_LINT_POST_COMMANDS List of bash commands to run after the linter None
CSS_SCSS_LINT_UNSECURED_ENV_VARIABLES List of env variables explicitly not filtered before calling CSS_SCSS_LINT and its pre/post commands None
CSS_SCSS_LINT_CONFIG_FILE scss-lint configuration file nameUse LINTER_DEFAULT to let the linter find it .scss-lint.yml
CSS_SCSS_LINT_RULES_PATH Path where to find linter configuration file Workspace folder, then MegaLinter default rules
CSS_SCSS_LINT_DISABLE_ERRORS Run linter but consider errors as warnings false
CSS_SCSS_LINT_DISABLE_ERRORS_IF_LESS_THAN Maximum number of errors allowed 0
CSS_SCSS_LINT_CLI_EXECUTABLE Override CLI executable ['scss-lint']

IDE Integration

Use scss-lint in your favorite IDE to catch errors before MegaLinter !

IDE Extension Name Install
Atom linter-scss-lint Visit Web Site
IDEA scss-lint-plugin
Visual Studio Code scss-lint Install in VSCode

MegaLinter Flavours

This linter is available in the following flavours

Flavor Description Embedded linters Info
all Default MegaLinter Flavor 122 Docker Image Size (tag) Docker Pulls
c_cpp Optimized for pure C/C++ projects 55 Docker Image Size (tag) Docker Pulls
cupcake MegaLinter for the most commonly used languages 84 Docker Image Size (tag) Docker Pulls
documentation MegaLinter for documentation projects 51 Docker Image Size (tag) Docker Pulls
dotnet Optimized for C, C++, C# or VB based projects 64 Docker Image Size (tag) Docker Pulls
dotnetweb Optimized for C, C++, C# or VB based projects with JS/TS 73 Docker Image Size (tag) Docker Pulls
go Optimized for GO based projects 53 Docker Image Size (tag) Docker Pulls
java Optimized for JAVA based projects 54 Docker Image Size (tag) Docker Pulls
javascript Optimized for JAVASCRIPT or TYPESCRIPT based projects 60 Docker Image Size (tag) Docker Pulls
php Optimized for PHP based projects 54 Docker Image Size (tag) Docker Pulls
python Optimized for PYTHON based projects 64 Docker Image Size (tag) Docker Pulls
ruby Optimized for RUBY based projects 51 Docker Image Size (tag) Docker Pulls
rust Optimized for RUST based projects 51 Docker Image Size (tag) Docker Pulls
salesforce Optimized for Salesforce based projects 55 Docker Image Size (tag) Docker Pulls
swift Optimized for SWIFT based projects 51 Docker Image Size (tag) Docker Pulls
terraform Optimized for TERRAFORM based projects 55 Docker Image Size (tag) Docker Pulls

Behind the scenes

How are identified applicable files

  • File extensions: .scss, .saas

How the linting is performed

  • scss-lint is called one time by identified file (file CLI lint mode)

Example calls

scss-lint myfile.scss
scss-lint -config .scss-lint.yml myfile.scss

Help content

Usage: scss-lint [options] [scss-files]
    -f, --format Formatter           Specify how to display lints
    -r, --require path               Require Ruby file
    -i, --include-linter linter,...  Specify which linters you want to run
    -x, --exclude-linter linter,...  Specify which linters you don't want to run
    -c, --config config-file         Specify which configuration file you want to use
    -e, --exclude file,...           List of file names to exclude
        --stdin-file-path file-path  Specify the path to assume for the file passed via STDIN
    -o, --out path                   Write output to a file instead of STDOUT
        --[no-]color                 Force output to be colorized
        --show-formatters            Shows available formatters
        --show-linters               Display available linters
    -h, --help                       Display help documentation
    -v, --version                    Display version

Installation on mega-linter Docker image