Sha256: 8b375f2738ac159500c3dfc697bf81e0cf15d88476ddac347237f8fd5c5f55f7
Contents?: true
Size: 856 Bytes
Versions: 5
Compression:
Stored size: 856 Bytes
Contents
# suspiCiouSS Suspiciouss is a CSS/Sass/Less linter that will provide you a report of common minor errors in your CSS development. ## Usage You can use it from the command line: ```bash git diff | suspiciouss ``` Or you can use it in your Ruby code: ```ruby require 'suspiciouss' Suspiciouss::Linter.new.process(your_git_diff_as_text) ``` ## What is going to report? You will be warned about the following issues in your code: - camel case selectors - excessive indentation - overqualified element selectors - styling #id selectors - styling js prefixed selectors - underscores in selectors - property with units if value is 0 The report will be as text or markdown, depending if you got provided a command line input or was used programatically. ## Contribute - Fork it - Write your feature with a test - Issue a pull request - ... - Profit!
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
suspiciouss-0.1.4 | README.md |
suspiciouss-0.1.3 | README.md |
suspiciouss-0.1.2 | README.md |
suspiciouss-0.1.1 | README.md |
suspiciouss-0.1 | README.md |