Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 924 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 924 Bytes

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 .