forked from forestryio/forestry.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
35 lines (34 loc) · 999 Bytes
/
.stylelintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Configures CSS Linting
# https://stylelint.io/
extends:
- stylelint-config-standard
- stylelint-config-sass-guidelines
plugins:
- stylelint-scss
- stylelint-no-unsupported-browser-features
- stylelint-order
defaultSeverity: warning
rules:
max-nesting-depth: 3
string-quotes: double
no-duplicate-selectors: true
color-hex-case: lower
color-hex-length: long
selector-attribute-quotes: always
declaration-colon-space-before: never
property-no-vendor-prefix: true
value-no-vendor-prefix: true
number-leading-zero: always
function-url-quotes: always
at-rule-no-vendor-prefix: true
selector-no-vendor-prefix: true
media-feature-name-no-vendor-prefix: true
plugin/no-unsupported-browser-features:
- true
- ignore: []
severity: warning
scss/at-extend-no-missing-placeholder: true
order/order:
- custom-properties
- declarations
order/properties-alphabetical-order: true