Created
May 14, 2014 11:57
-
-
Save darylldoyle/c9f7cdc4e9f9d3c760db to your computer and use it in GitHub Desktop.
scss-lint
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Default application configuration that all configurations inherit from. | |
linters: | |
BorderZero: | |
enabled: true | |
CapitalizationInSelector: | |
enabled: false | |
ColorKeyword: | |
enabled: true | |
Comment: | |
enabled: true | |
DebugStatement: | |
enabled: true | |
DeclarationOrder: | |
enabled: true | |
DuplicateProperty: | |
enabled: true | |
EmptyLineBetweenBlocks: | |
enabled: true | |
ignore_single_line_blocks: true | |
EmptyRule: | |
enabled: true | |
FinalNewline: | |
enabled: true | |
present: true | |
HexFormat: | |
enabled: true | |
IdWithExtraneousSelector: | |
enabled: true | |
Indentation: | |
enabled: true | |
width: 4 | |
LeadingZero: | |
enabled: true | |
style: exclude_zero # or 'include_zero' | |
MergeableSelector: | |
enabled: true | |
force_nesting: true | |
NameFormat: | |
enabled: false | |
convention: hyphenated_lowercase # or 'BEM', or a regex pattern | |
PlaceholderInExtend: | |
enabled: true | |
PropertySortOrder: | |
enabled: false | |
PropertySpelling: | |
enabled: true | |
extra_properties: [] | |
SelectorDepth: | |
enabled: true | |
max_depth: 6 | |
Shorthand: | |
enabled: true | |
SingleLinePerSelector: | |
enabled: true | |
SpaceAfterComma: | |
enabled: true | |
SpaceAfterPropertyColon: | |
enabled: true | |
SpaceAfterPropertyName: | |
enabled: true | |
SpaceBeforeBrace: | |
enabled: true | |
allow_single_line_padding: false | |
SpaceBetweenParens: | |
enabled: true | |
spaces: 0 | |
StringQuotes: | |
enabled: true | |
style: single_quotes # or double_quotes | |
TrailingSemicolonAfterPropertyValue: | |
enabled: true | |
UnnecessaryMantissa: | |
enabled: true | |
UrlFormat: | |
enabled: true | |
UrlQuotes: | |
enabled: true | |
ZeroUnit: | |
enabled: true | |
Compass::*: | |
enabled: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment