Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.03 KB

README.md

File metadata and controls

34 lines (23 loc) · 1.03 KB

Docker scss-lint

What is scss-lint

scss-lint is a tool to help keep your SCSS files clean and readable by running it against a collection of configurable linter rules. You can run it manually from the command line, or integrate it into your SCM hooks.

You can get more informations at: https://github.com/brigade/scss-lint.

Run using Docker

docker run --rm -v $(pwd):/app rvip/scss-lint

You can pass in every options scss-lint accepts:

docker run --rm -v $(pwd):/app rvip/scss-lint src/

For the full list of options, go to scss-lint official README.

Build

git clone https://github.com/ReputationVIP/docker-scss-lint.git && cd docker-scss-lint
docker build -t your-namespace/scss-lint .