-
Notifications
You must be signed in to change notification settings - Fork 232
/
.stylelintrc.yml
28 lines (23 loc) · 973 Bytes
/
.stylelintrc.yml
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
# See https://stylelint.io/user-guide/rules/
# Also https://github.com/stylelint-scss/stylelint-scss#list-of-rules
extends:
- stylelint-config-standard-scss
rules:
# Default rules:
# - https://github.com/stylelint-scss/stylelint-config-standard-scss/blob/main/index.js
# - https://github.com/stylelint-scss/stylelint-config-recommended-scss/blob/master/index.js
# - https://github.com/stylelint/stylelint-config-standard/blob/main/index.js
# - https://github.com/stylelint/stylelint-config-recommended/blob/main/index.js
# possible errors (these are all on by default)
no-descending-specificity: null
# limit language features
color-function-notation: null
color-named: always-where-possible
custom-property-pattern: null
function-url-no-scheme-relative: true
number-max-precision: null
selector-class-pattern: null
# Sass
scss/at-mixin-pattern: null
scss/dollar-variable-pattern: null
scss/no-global-function-names: null