1+ {
2+ "extends" : [
3+ " stylelint-config-standard-scss" ,
4+ " stylelint-config-idiomatic-order" ,
5+ " @stylistic/stylelint-config"
6+ ],
7+ "plugins" : [
8+ " stylelint-use-logical-spec" ,
9+ " @stylistic/stylelint-plugin"
10+ ],
11+ "rules" : {
12+ "alpha-value-notation" : null ,
13+ "at-rule-empty-line-before" : null ,
14+ "block-no-empty" : null ,
15+ "color-function-notation" : null ,
16+ "color-named" : " never" ,
17+ "custom-property-empty-line-before" : null ,
18+ "custom-property-pattern" : null ,
19+ "declaration-block-no-redundant-longhand-properties" : null ,
20+ "declaration-empty-line-before" : null ,
21+ "declaration-no-important" : null ,
22+ "font-family-no-missing-generic-family-keyword" : [
23+ true ,
24+ {
25+ "ignoreFontFamilies" : [
26+ " boxicons" ,
27+ " tabler-icons" ,
28+ " remix-icons"
29+ ]
30+ }
31+ ],
32+ "font-weight-notation" : [
33+ " numeric" ,
34+ {
35+ "ignore" : [
36+ " relative"
37+ ]
38+ }
39+ ],
40+ "function-url-no-scheme-relative" : true ,
41+ "liberty/use-logical-spec" : true ,
42+ "media-feature-range-notation" : null ,
43+ "media-query-no-invalid" : null ,
44+ "no-descending-specificity" : null ,
45+ "no-invalid-double-slash-comments" : true ,
46+ "no-invalid-position-at-import-rule" : null ,
47+ "number-max-precision" : null ,
48+ "rule-empty-line-before" : null ,
49+ "selector-class-pattern" : null ,
50+ "selector-id-pattern" : null ,
51+ "selector-max-attribute" : 2 ,
52+ "selector-max-id" : 1 ,
53+ "selector-max-specificity" : null ,
54+ "selector-not-notation" : null ,
55+ "scss/at-extend-no-missing-placeholder" : null ,
56+ "scss/at-function-named-arguments" : " never" ,
57+ "scss/at-if-closing-brace-newline-after" : null ,
58+ "scss/at-if-closing-brace-space-after" : null ,
59+ "scss/at-if-no-null" : null ,
60+ "scss/at-mixin-pattern" : null ,
61+ "scss/at-mixin-argumentless-call-parentheses" : " always" ,
62+ "scss/at-rule-conditional-no-parentheses" : null ,
63+ "scss/comment-no-empty" : null ,
64+ "scss/dimension-no-non-numeric-values" : true ,
65+ "scss/dollar-variable-empty-line-before" : null ,
66+ "scss/dollar-variable-pattern" : null ,
67+ "scss/double-slash-comment-empty-line-before" : null ,
68+ "scss/double-slash-comment-whitespace-inside" : null ,
69+ "scss/function-quote-no-quoted-strings-inside" : null ,
70+ "scss/media-feature-value-dollar-variable" : null ,
71+ "scss/no-global-function-names" : null ,
72+ "@stylistic/at-rule-name-space-after" : " always" ,
73+ "@stylistic/at-rule-semicolon-space-before" : " never" ,
74+ "@stylistic/block-closing-brace-empty-line-before" : null ,
75+ "@stylistic/block-closing-brace-newline-after" : [
76+ " always" ,
77+ {
78+ "ignoreAtRules" : [
79+ " if" ,
80+ " else"
81+ ]
82+ }
83+ ],
84+ "@stylistic/block-opening-brace-space-before" : null ,
85+ "@stylistic/declaration-block-semicolon-newline-before" : " never-multi-line" ,
86+ "@stylistic/indentation" : 2 ,
87+ "@stylistic/max-empty-lines" : 2 ,
88+ "@stylistic/max-line-length" : [
89+ 220 ,
90+ {
91+ "ignore" : " comments"
92+ }
93+ ],
94+ "@stylistic/no-eol-whitespace" : true ,
95+ "@stylistic/number-leading-zero" : " never" ,
96+ "@stylistic/selector-list-comma-newline-before" : " never-multi-line" ,
97+ "@stylistic/selector-list-comma-space-after" : " always-single-line" ,
98+ "@stylistic/selector-list-comma-space-before" : " never-single-line" ,
99+ "@stylistic/unicode-bom" : " never"
100+ },
101+ "overrides" : [
102+ {
103+ "files" : [
104+ " **/_bootstrap-extended/**/*.scss"
105+ ],
106+ "rules" : {
107+ "declaration-property-value-disallowed-list" : {
108+ "border" : " none" ,
109+ "outline" : " none"
110+ },
111+ "function-disallowed-list" : [
112+ " lighten" ,
113+ " darken"
114+ ],
115+ "property-disallowed-list" : [
116+ " border-radius" ,
117+ " border-top-left-radius" ,
118+ " border-top-right-radius" ,
119+ " border-bottom-right-radius" ,
120+ " border-bottom-left-radius" ,
121+ " transition"
122+ ],
123+ "scss/dollar-variable-default" : [
124+ true ,
125+ {
126+ "ignore" : " local"
127+ }
128+ ],
129+ "scss/selector-no-union-class-name" : true
130+ }
131+ }
132+ ]
133+ }
0 commit comments