]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/blob - .sass-lint.yml
Added no-vendor-prefixes linter to sass-lint.yml
[thirdparty/foundation/foundation-sites.git] / .sass-lint.yml
1 # The following scss-lint Linters are not yet supported by sass-lint:
2 # ElsePlacement, PropertyCount, SelectorDepth, UnnecessaryParentReference
3 #
4 # The following settings/values are unsupported by sass-lint:
5 # Linter Indentation, option "allow_non_nested_indentation"
6 # Linter Indentation, option "character"
7 # Linter PropertySortOrder, option "separate_groups"
8 # Linter SpaceBeforeBrace, option "allow_single_line_padding"
9
10 files:
11 include: 'scss/**/*.scss'
12 options:
13 formatter: stylish
14 merge-default-rules: false
15 rules:
16 border-zero:
17 - 1
18 - convention: zero
19 brace-style:
20 - 1
21 - allow-single-line: false
22 class-name-format:
23 - 1
24 - convention: '([a-z0-9]+-?)+'
25 clean-import-paths:
26 - 1
27 - filename-extension: false
28 leading-underscore: false
29 empty-line-between-blocks:
30 - 1
31 - ignore-single-line-rulesets: true
32 extends-before-declarations: 1
33 extends-before-mixins: 1
34 final-newline:
35 - 1
36 - include: true
37 force-attribute-nesting: 1
38 force-element-nesting: 1
39 force-pseudo-nesting: 1
40 function-name-format:
41 - 1
42 - allow-leading-underscore: true
43 convention: hyphenatedlowercase
44 hex-length:
45 - 1
46 - style: short
47 hex-notation:
48 - 1
49 - style: lowercase
50 id-name-format:
51 - 1
52 - convention: '([a-z0-9]+-?)+'
53 indentation:
54 - 1
55 - size: 2
56 leading-zero:
57 - 1
58 - include: true
59 mixin-name-format:
60 - 1
61 - allow-leading-underscore: true
62 convention: hyphenatedlowercase
63 mixins-before-declarations: 1
64 nesting-depth:
65 - 1
66 - max-depth: 3
67 no-color-keywords: 1
68 no-color-literals: 1
69 no-css-comments: 0
70 no-debug: 1
71 no-duplicate-properties: 1
72 no-empty-rulesets: 1
73 no-ids: 1
74 no-important: 0
75 no-invalid-hex: 1
76 no-mergeable-selectors: 1
77 no-misspelled-properties:
78 - 1
79 - extra-properties: []
80 no-qualifying-elements:
81 - 1
82 - allow-element-with-attribute: false
83 allow-element-with-class: false
84 allow-element-with-id: false
85 no-trailing-zero: 1
86 no-url-protocols: 1
87 no-vendor-prefixes:
88 - 1
89 - ignore-non-standard: true
90 placeholder-in-extend: 1
91 placeholder-name-format:
92 - 1
93 - convention: '([a-z0-9]+-?)+'
94 property-sort-order:
95 - 0
96 - ignore-custom-properties: false
97 quotes:
98 - 1
99 - style: single
100 shorthand-values: 1
101 single-line-per-selector: 0
102 space-after-bang:
103 - 1
104 - include: false
105 space-after-colon:
106 - 1
107 - include: true
108 space-after-comma: 1
109 space-before-bang:
110 - 1
111 - include: true
112 space-before-brace:
113 - 1
114 - include: true
115 space-before-colon: 1
116 space-between-parens:
117 - 1
118 - include: false
119 trailing-semicolon: 1
120 url-quotes: 1
121 variable-for-property:
122 - 0
123 - properties: []
124 variable-name-format:
125 - 1
126 - allow-leading-underscore: true
127 convention: hyphenatedlowercase
128 zero-unit: 1