Skip to content

Commit

Permalink
Small style improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
gabskoro committed Sep 15, 2016
1 parent a037b41 commit f3bc531
Show file tree
Hide file tree
Showing 2 changed files with 391 additions and 35 deletions.
354 changes: 354 additions & 0 deletions .scss-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,354 @@
# Default application configuration that all configurations inherit from.

linters:
BangFormat:
enabled: true
space_before_bang: true
space_after_bang: false

BorderZero:
enabled: true

ColorKeyword:
enabled: true

ColorVariable:
enabled: true

Comment:
enabled: true

DebugStatement:
enabled: true

DeclarationOrder:
enabled: true

DuplicateProperty:
enabled: true

ElsePlacement:
enabled: true
style: same_line # or 'new_line'

EmptyLineBetweenBlocks:
enabled: true
ignore_single_line_blocks: true

EmptyRule:
enabled: true

FinalNewline:
enabled: true
present: true

HexLength:
enabled: true
style: long # 'short' or 'long'

HexNotation:
enabled: true
style: uppercase # 'lowercase' or 'uppercase'

HexValidation:
enabled: true

IdSelector:
enabled: true

ImportantRule:
enabled: true

ImportPath:
enabled: true
leading_underscore: false
filename_extension: false

Indentation:
enabled: true
character: space # or 'tab'
width: 2

LeadingZero:
enabled: true
style: include_zero # exclude_zero or 'include_zero'

MergeableSelector:
enabled: true
force_nesting: true

# NameFormat:
# enabled: false
# convention: BEM # hyphenated_lowercase or 'BEM', or a regex pattern

NestingDepth:
enabled: true
max_depth: 4

PlaceholderInExtend:
enabled: true

PropertySortOrder:
enabled: true
order:
- font
- font-family
- font-size
- font-weight
- font-style
- font-variant
- font-size-adjust
- font-stretch
- font-effect
- font-emphasize
- font-emphasize-position
- font-emphasize-style
- font-smooth
- line-height
- # This empty element signals a visual separation
- position
- z-index
- top
- right
- bottom
- left
-
- display
- visibility
- float
- clear
- overflow
- overflow-x
- overflow-y
- clip
- zoom
- flex-direction
- flex-order
- flex-pack
- flex-align
-
- box-sizing
- width
- min-width
- max-width
- height
- min-height
- max-height
- margin
- margin-top
- margin-right
- margin-bottom
- margin-left
- padding
- padding-top
- padding-right
- padding-bottom
- padding-left
-
- table-layout
- empty-cells
- caption-side
- border-spacing
- border-collapse
- list-style
- list-style-position
- list-style-type
- list-style-image
-
- content
- quotes
- counter-reset
- counter-increment
- resize
- cursor
- user-select
- nav-index
- nav-up
- nav-right
- nav-down
- nav-left
- transition
- transition-delay
- transition-timing-function
- transition-duration
- transition-property
- transform
- transform-origin
- animation
- animation-name
- animation-duration
- animation-play-state
- animation-timing-function
- animation-delay
- animation-iteration-count
- animation-direction
- text-align
- text-align-last
- vertical-align
- white-space
- text-decoration
- text-emphasis
- text-emphasis-color
- text-emphasis-style
- text-emphasis-position
- text-indent
- text-justify
- letter-spacing
- word-spacing
- text-outline
- text-transform
- text-wrap
- text-overflow
- text-overflow-ellipsis
- text-overflow-mode
- word-wrap
- word-break
- tab-size
- hyphens
- pointer-events
-
- opacity
- filter
- color
- border
- border-width
- border-style
- border-color
- border-top
- border-top-width
- border-top-style
- border-top-color
- border-right
- border-right-width
- border-right-style
- border-right-color
- border-bottom
- border-bottom-width
- border-bottom-style
- border-bottom-color
- border-left
- border-left-width
- border-left-style
- border-left-color
- border-radius
- border-top-left-radius
- border-top-right-radius
- border-bottom-right-radius
- border-bottom-left-radius
- border-image
- border-image-source
- border-image-slice
- border-image-width
- border-image-outset
- border-image-repeat
- outline
- outline-width
- outline-style
- outline-color
- outline-offset
- background
- background-color
- background-image
- background-repeat
- background-attachment
- background-position
- background-position-x
- background-position-y
- background-clip
- background-origin
- background-size
- box-decoration-break
- box-shadow
- text-shadow
separate_groups: true

PropertySpelling:
enabled: true
extra_properties: []

QualifyingElement:
enabled: true
allow_element_with_attribute: true
allow_element_with_class: false
allow_element_with_id: false

SelectorDepth:
enabled: true
max_depth: 3

SelectorFormat:
enabled: true
convention: ^([\.\%]?[a-z]*[-]?[a-z0-9\-]*)(\.[a-z0-9\-]*)?(__[a-z0-9]*[-]?[a-z0-9\-]*)?(_[a-z0-9]*[-]?[a-z0-9\-]*)?(\:[a-z]*)*$ # or 'hyphenated_lowercase', or 'snake_case', or 'camel_case', or a regex pattern

Shorthand:
enabled: true
allowed_shorthands: [1, 2]

SingleLinePerProperty:
enabled: true
allow_single_line_rule_sets: true

SingleLinePerSelector:
enabled: true

SpaceAfterComma:
enabled: true

SpaceAfterPropertyColon:
enabled: true
style: one_space # or 'no_space', or 'at_least_one_space', or 'aligned'

SpaceAfterPropertyName:
enabled: true

SpaceAfterVariableName:
enabled: true

SpaceAroundOperator:
enabled: true

SpaceBeforeBrace:
enabled: true
allow_single_line_padding: false

SpaceBetweenParens:
enabled: true
spaces: 0

StringQuotes:
enabled: true
style: single_quotes # or double_quotes

TrailingSemicolon:
enabled: true

TrailingZero:
enabled: true

TransitionAll:
enabled: true

UnnecessaryMantissa:
enabled: true

UnnecessaryParentReference:
enabled: true

UrlFormat:
enabled: true

UrlQuotes:
enabled: true

VariableForProperty:
enabled: true
properties: [color, font, background-color]

VendorPrefix:
enabled: true

ZeroUnit:
enabled: true

Compass::*:
enabled: false
Loading

0 comments on commit f3bc531

Please sign in to comment.