scss-lint-bliss 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (159) hide show
  1. data/bin/scss-lint +6 -0
  2. data/config/default.yml +220 -0
  3. data/data/prefixed-identifiers/base.txt +107 -0
  4. data/data/prefixed-identifiers/bourbon.txt +71 -0
  5. data/data/properties.txt +477 -0
  6. data/data/property-sort-orders/concentric.txt +134 -0
  7. data/data/property-sort-orders/recess.txt +149 -0
  8. data/data/property-sort-orders/smacss.txt +137 -0
  9. data/lib/scss_lint.rb +31 -0
  10. data/lib/scss_lint/cli.rb +215 -0
  11. data/lib/scss_lint/config.rb +251 -0
  12. data/lib/scss_lint/constants.rb +8 -0
  13. data/lib/scss_lint/control_comment_processor.rb +126 -0
  14. data/lib/scss_lint/engine.rb +56 -0
  15. data/lib/scss_lint/exceptions.rb +21 -0
  16. data/lib/scss_lint/file_finder.rb +68 -0
  17. data/lib/scss_lint/lint.rb +24 -0
  18. data/lib/scss_lint/linter.rb +161 -0
  19. data/lib/scss_lint/linter/bang_format.rb +52 -0
  20. data/lib/scss_lint/linter/bliss.rb +8 -0
  21. data/lib/scss_lint/linter/bliss/module.rb +101 -0
  22. data/lib/scss_lint/linter/border_zero.rb +39 -0
  23. data/lib/scss_lint/linter/color_keyword.rb +32 -0
  24. data/lib/scss_lint/linter/color_variable.rb +49 -0
  25. data/lib/scss_lint/linter/comment.rb +21 -0
  26. data/lib/scss_lint/linter/compass.rb +7 -0
  27. data/lib/scss_lint/linter/compass/property_with_mixin.rb +47 -0
  28. data/lib/scss_lint/linter/debug_statement.rb +10 -0
  29. data/lib/scss_lint/linter/declaration_order.rb +71 -0
  30. data/lib/scss_lint/linter/duplicate_property.rb +58 -0
  31. data/lib/scss_lint/linter/else_placement.rb +48 -0
  32. data/lib/scss_lint/linter/empty_line_between_blocks.rb +85 -0
  33. data/lib/scss_lint/linter/empty_rule.rb +11 -0
  34. data/lib/scss_lint/linter/final_newline.rb +20 -0
  35. data/lib/scss_lint/linter/hex_length.rb +56 -0
  36. data/lib/scss_lint/linter/hex_notation.rb +38 -0
  37. data/lib/scss_lint/linter/hex_validation.rb +23 -0
  38. data/lib/scss_lint/linter/id_selector.rb +10 -0
  39. data/lib/scss_lint/linter/import_path.rb +62 -0
  40. data/lib/scss_lint/linter/important_rule.rb +12 -0
  41. data/lib/scss_lint/linter/indentation.rb +197 -0
  42. data/lib/scss_lint/linter/leading_zero.rb +49 -0
  43. data/lib/scss_lint/linter/mergeable_selector.rb +60 -0
  44. data/lib/scss_lint/linter/name_format.rb +117 -0
  45. data/lib/scss_lint/linter/nesting_depth.rb +24 -0
  46. data/lib/scss_lint/linter/placeholder_in_extend.rb +22 -0
  47. data/lib/scss_lint/linter/property_count.rb +44 -0
  48. data/lib/scss_lint/linter/property_sort_order.rb +189 -0
  49. data/lib/scss_lint/linter/property_spelling.rb +49 -0
  50. data/lib/scss_lint/linter/property_units.rb +59 -0
  51. data/lib/scss_lint/linter/qualifying_element.rb +42 -0
  52. data/lib/scss_lint/linter/selector_depth.rb +64 -0
  53. data/lib/scss_lint/linter/selector_format.rb +102 -0
  54. data/lib/scss_lint/linter/shorthand.rb +139 -0
  55. data/lib/scss_lint/linter/single_line_per_property.rb +59 -0
  56. data/lib/scss_lint/linter/single_line_per_selector.rb +35 -0
  57. data/lib/scss_lint/linter/space_after_comma.rb +110 -0
  58. data/lib/scss_lint/linter/space_after_property_colon.rb +84 -0
  59. data/lib/scss_lint/linter/space_after_property_name.rb +27 -0
  60. data/lib/scss_lint/linter/space_before_brace.rb +72 -0
  61. data/lib/scss_lint/linter/space_between_parens.rb +35 -0
  62. data/lib/scss_lint/linter/string_quotes.rb +94 -0
  63. data/lib/scss_lint/linter/trailing_semicolon.rb +67 -0
  64. data/lib/scss_lint/linter/trailing_zero.rb +41 -0
  65. data/lib/scss_lint/linter/unnecessary_mantissa.rb +42 -0
  66. data/lib/scss_lint/linter/unnecessary_parent_reference.rb +49 -0
  67. data/lib/scss_lint/linter/url_format.rb +56 -0
  68. data/lib/scss_lint/linter/url_quotes.rb +27 -0
  69. data/lib/scss_lint/linter/variable_for_property.rb +30 -0
  70. data/lib/scss_lint/linter/vendor_prefix.rb +64 -0
  71. data/lib/scss_lint/linter/zero_unit.rb +39 -0
  72. data/lib/scss_lint/linter_registry.rb +26 -0
  73. data/lib/scss_lint/location.rb +38 -0
  74. data/lib/scss_lint/options.rb +109 -0
  75. data/lib/scss_lint/rake_task.rb +106 -0
  76. data/lib/scss_lint/reporter.rb +18 -0
  77. data/lib/scss_lint/reporter/config_reporter.rb +26 -0
  78. data/lib/scss_lint/reporter/default_reporter.rb +27 -0
  79. data/lib/scss_lint/reporter/files_reporter.rb +8 -0
  80. data/lib/scss_lint/reporter/json_reporter.rb +30 -0
  81. data/lib/scss_lint/reporter/xml_reporter.rb +33 -0
  82. data/lib/scss_lint/runner.rb +51 -0
  83. data/lib/scss_lint/sass/script.rb +78 -0
  84. data/lib/scss_lint/sass/tree.rb +168 -0
  85. data/lib/scss_lint/selector_visitor.rb +34 -0
  86. data/lib/scss_lint/utils.rb +112 -0
  87. data/lib/scss_lint/version.rb +4 -0
  88. data/spec/scss_lint/cli_spec.rb +177 -0
  89. data/spec/scss_lint/config_spec.rb +253 -0
  90. data/spec/scss_lint/engine_spec.rb +24 -0
  91. data/spec/scss_lint/file_finder_spec.rb +134 -0
  92. data/spec/scss_lint/linter/bang_format_spec.rb +121 -0
  93. data/spec/scss_lint/linter/bliss/module_spec.rb +254 -0
  94. data/spec/scss_lint/linter/border_zero_spec.rb +118 -0
  95. data/spec/scss_lint/linter/color_keyword_spec.rb +83 -0
  96. data/spec/scss_lint/linter/color_variable_spec.rb +145 -0
  97. data/spec/scss_lint/linter/comment_spec.rb +79 -0
  98. data/spec/scss_lint/linter/compass/property_with_mixin_spec.rb +55 -0
  99. data/spec/scss_lint/linter/debug_statement_spec.rb +21 -0
  100. data/spec/scss_lint/linter/declaration_order_spec.rb +575 -0
  101. data/spec/scss_lint/linter/duplicate_property_spec.rb +189 -0
  102. data/spec/scss_lint/linter/else_placement_spec.rb +106 -0
  103. data/spec/scss_lint/linter/empty_line_between_blocks_spec.rb +276 -0
  104. data/spec/scss_lint/linter/empty_rule_spec.rb +27 -0
  105. data/spec/scss_lint/linter/final_newline_spec.rb +49 -0
  106. data/spec/scss_lint/linter/hex_length_spec.rb +104 -0
  107. data/spec/scss_lint/linter/hex_notation_spec.rb +104 -0
  108. data/spec/scss_lint/linter/hex_validation_spec.rb +40 -0
  109. data/spec/scss_lint/linter/id_selector_spec.rb +62 -0
  110. data/spec/scss_lint/linter/import_path_spec.rb +300 -0
  111. data/spec/scss_lint/linter/important_rule_spec.rb +43 -0
  112. data/spec/scss_lint/linter/indentation_spec.rb +347 -0
  113. data/spec/scss_lint/linter/leading_zero_spec.rb +233 -0
  114. data/spec/scss_lint/linter/mergeable_selector_spec.rb +283 -0
  115. data/spec/scss_lint/linter/name_format_spec.rb +282 -0
  116. data/spec/scss_lint/linter/nesting_depth_spec.rb +114 -0
  117. data/spec/scss_lint/linter/placeholder_in_extend_spec.rb +63 -0
  118. data/spec/scss_lint/linter/property_count_spec.rb +104 -0
  119. data/spec/scss_lint/linter/property_sort_order_spec.rb +426 -0
  120. data/spec/scss_lint/linter/property_spelling_spec.rb +84 -0
  121. data/spec/scss_lint/linter/property_units_spec.rb +229 -0
  122. data/spec/scss_lint/linter/qualifying_element_spec.rb +125 -0
  123. data/spec/scss_lint/linter/selector_depth_spec.rb +159 -0
  124. data/spec/scss_lint/linter/selector_format_spec.rb +632 -0
  125. data/spec/scss_lint/linter/shorthand_spec.rb +198 -0
  126. data/spec/scss_lint/linter/single_line_per_property_spec.rb +73 -0
  127. data/spec/scss_lint/linter/single_line_per_selector_spec.rb +130 -0
  128. data/spec/scss_lint/linter/space_after_comma_spec.rb +332 -0
  129. data/spec/scss_lint/linter/space_after_property_colon_spec.rb +264 -0
  130. data/spec/scss_lint/linter/space_after_property_name_spec.rb +37 -0
  131. data/spec/scss_lint/linter/space_before_brace_spec.rb +829 -0
  132. data/spec/scss_lint/linter/space_between_parens_spec.rb +263 -0
  133. data/spec/scss_lint/linter/string_quotes_spec.rb +335 -0
  134. data/spec/scss_lint/linter/trailing_semicolon_spec.rb +304 -0
  135. data/spec/scss_lint/linter/trailing_zero_spec.rb +176 -0
  136. data/spec/scss_lint/linter/unnecessary_mantissa_spec.rb +67 -0
  137. data/spec/scss_lint/linter/unnecessary_parent_reference_spec.rb +98 -0
  138. data/spec/scss_lint/linter/url_format_spec.rb +55 -0
  139. data/spec/scss_lint/linter/url_quotes_spec.rb +73 -0
  140. data/spec/scss_lint/linter/variable_for_property_spec.rb +145 -0
  141. data/spec/scss_lint/linter/vendor_prefix_spec.rb +371 -0
  142. data/spec/scss_lint/linter/zero_unit_spec.rb +113 -0
  143. data/spec/scss_lint/linter_registry_spec.rb +50 -0
  144. data/spec/scss_lint/linter_spec.rb +292 -0
  145. data/spec/scss_lint/location_spec.rb +42 -0
  146. data/spec/scss_lint/options_spec.rb +34 -0
  147. data/spec/scss_lint/rake_task_spec.rb +43 -0
  148. data/spec/scss_lint/reporter/config_reporter_spec.rb +42 -0
  149. data/spec/scss_lint/reporter/default_reporter_spec.rb +73 -0
  150. data/spec/scss_lint/reporter/files_reporter_spec.rb +38 -0
  151. data/spec/scss_lint/reporter/json_reporter_spec.rb +96 -0
  152. data/spec/scss_lint/reporter/xml_reporter_spec.rb +103 -0
  153. data/spec/scss_lint/reporter_spec.rb +11 -0
  154. data/spec/scss_lint/runner_spec.rb +123 -0
  155. data/spec/scss_lint/selector_visitor_spec.rb +264 -0
  156. data/spec/spec_helper.rb +34 -0
  157. data/spec/support/isolated_environment.rb +25 -0
  158. data/spec/support/matchers/report_lint.rb +48 -0
  159. metadata +342 -0
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'scss_lint'
4
+ require 'scss_lint/cli'
5
+
6
+ exit SCSSLint::CLI.new.run(ARGV)
@@ -0,0 +1,220 @@
1
+ # Default application configuration that all configurations inherit from.
2
+
3
+ scss_files: "**/*.scss"
4
+
5
+ linters:
6
+ BangFormat:
7
+ enabled: true
8
+ space_before_bang: true
9
+ space_after_bang: false
10
+
11
+ BorderZero:
12
+ enabled: true
13
+ convention: zero # or `none`
14
+
15
+ ColorKeyword:
16
+ enabled: true
17
+
18
+ ColorVariable:
19
+ enabled: true
20
+
21
+ Comment:
22
+ enabled: true
23
+
24
+ DebugStatement:
25
+ enabled: true
26
+
27
+ DeclarationOrder:
28
+ enabled: true
29
+
30
+ DuplicateProperty:
31
+ enabled: true
32
+
33
+ ElsePlacement:
34
+ enabled: true
35
+ style: same_line # or 'new_line'
36
+
37
+ EmptyLineBetweenBlocks:
38
+ enabled: true
39
+ ignore_single_line_blocks: true
40
+
41
+ EmptyRule:
42
+ enabled: true
43
+
44
+ FinalNewline:
45
+ enabled: true
46
+ present: true
47
+
48
+ HexLength:
49
+ enabled: true
50
+ style: short # or 'long'
51
+
52
+ HexNotation:
53
+ enabled: true
54
+ style: lowercase # or 'uppercase'
55
+
56
+ HexValidation:
57
+ enabled: true
58
+
59
+ IdSelector:
60
+ enabled: true
61
+
62
+ ImportantRule:
63
+ enabled: true
64
+
65
+ ImportPath:
66
+ enabled: true
67
+ leading_underscore: false
68
+ filename_extension: false
69
+
70
+ Indentation:
71
+ enabled: true
72
+ allow_non_nested_indentation: false
73
+ character: space # or 'tab'
74
+ width: 2
75
+
76
+ LeadingZero:
77
+ enabled: true
78
+ style: exclude_zero # or 'include_zero'
79
+
80
+ MergeableSelector:
81
+ enabled: true
82
+ force_nesting: true
83
+
84
+ NameFormat:
85
+ enabled: true
86
+ allow_leading_underscore: true
87
+ convention: hyphenated_lowercase # or 'camel_case', or 'snake_case', or a regex pattern
88
+
89
+ NestingDepth:
90
+ enabled: true
91
+ max_depth: 3
92
+
93
+ PlaceholderInExtend:
94
+ enabled: true
95
+
96
+ PropertyCount:
97
+ enabled: false
98
+ include_nested: false
99
+ max_properties: 10
100
+
101
+ PropertyUnits:
102
+ enabled: true
103
+ global: [
104
+ 'ch', 'em', 'ex', 'rem', # Font-relative lengths
105
+ 'cm', 'in', 'mm', 'pc', 'pt', 'px', 'q', # Absolute lengths
106
+ 'vh', 'vw', 'vmin', 'vmax', # Viewport-percentage lengths
107
+ 'deg', 'grad', 'rad', 'turn', # Angle
108
+ 'ms', 's', # Duration
109
+ 'Hz', 'kHz', # Frequency
110
+ 'dpi', 'dpcm', 'dppx', # Resolution
111
+ '%', # Other
112
+ ]
113
+ properties: {}
114
+
115
+ PropertySortOrder:
116
+ enabled: true
117
+ ignore_unspecified: false
118
+ separate_groups: false
119
+
120
+ PropertySpelling:
121
+ enabled: true
122
+ extra_properties: []
123
+
124
+ QualifyingElement:
125
+ enabled: true
126
+ allow_element_with_attribute: false
127
+ allow_element_with_class: false
128
+ allow_element_with_id: false
129
+
130
+ SelectorDepth:
131
+ enabled: true
132
+ max_depth: 3
133
+
134
+ SelectorFormat:
135
+ enabled: true
136
+ convention: hyphenated_lowercase # or 'strict_BEM', or 'hyphenated_BEM', or 'snake_case', or 'camel_case', or a regex pattern
137
+
138
+ Shorthand:
139
+ enabled: true
140
+ allowed_shorthands: [1, 2, 3]
141
+
142
+ SingleLinePerProperty:
143
+ enabled: true
144
+ allow_single_line_rule_sets: true
145
+
146
+ SingleLinePerSelector:
147
+ enabled: true
148
+
149
+ SpaceAfterComma:
150
+ enabled: true
151
+
152
+ SpaceAfterPropertyColon:
153
+ enabled: true
154
+ style: one_space # or 'no_space', or 'at_least_one_space', or 'aligned'
155
+
156
+ SpaceAfterPropertyName:
157
+ enabled: true
158
+
159
+ SpaceBeforeBrace:
160
+ enabled: true
161
+ style: space # or 'new_line'
162
+ allow_single_line_padding: false
163
+
164
+ SpaceBetweenParens:
165
+ enabled: true
166
+ spaces: 0
167
+
168
+ StringQuotes:
169
+ enabled: true
170
+ style: single_quotes # or double_quotes
171
+
172
+ TrailingSemicolon:
173
+ enabled: true
174
+
175
+ TrailingZero:
176
+ enabled: false
177
+
178
+ UnnecessaryMantissa:
179
+ enabled: true
180
+
181
+ UnnecessaryParentReference:
182
+ enabled: true
183
+
184
+ UrlFormat:
185
+ enabled: true
186
+
187
+ UrlQuotes:
188
+ enabled: true
189
+
190
+ VariableForProperty:
191
+ enabled: false
192
+ properties: []
193
+
194
+ VendorPrefix:
195
+ enabled: true
196
+ identifier_list: base
197
+ additional_identifiers: []
198
+ excluded_identifiers: []
199
+
200
+ ZeroUnit:
201
+ enabled: true
202
+
203
+ Bliss::Module:
204
+ enabled: true
205
+ severity: error
206
+ module_file_pattern: !ruby/regexp '/[\/\\]_?([A-Z][a-zA-Z0-9]+)\.scss/'
207
+ allow_id_selector_in_module: false
208
+ allow_attribute_selector_in_module: true
209
+ allow_element_selector_in_module: true
210
+
211
+ allow_module_margin: false
212
+ allow_module_width: false
213
+
214
+ allow_utility_classes_in_module: false
215
+ ignored_utility_class_prefixes: ['is', 'ie']
216
+
217
+ allow_utility_direct_styling: false
218
+
219
+ Compass::*:
220
+ enabled: false
@@ -0,0 +1,107 @@
1
+ # Based on Autoprefixer --info
2
+
3
+ # At-Rules
4
+ keyframes
5
+
6
+ # Selectors
7
+ selection
8
+ placeholder
9
+ fullscreen
10
+
11
+ # Properties
12
+ transition
13
+ transition-property
14
+ border-radius
15
+ border-top-left-radius
16
+ border-top-right-radius
17
+ border-bottom-right-radius
18
+ border-bottom-left-radius
19
+ box-shadow
20
+ animation
21
+ animation-name
22
+ animation-duration
23
+ animation-delay
24
+ animation-direction
25
+ animation-fill-mode
26
+ animation-iteration-count
27
+ animation-play-state
28
+ animation-timing-function
29
+ transition-duration
30
+ transition-delay
31
+ transition-timing-function
32
+ transform
33
+ transform-origin
34
+ perspective
35
+ perspective-origin
36
+ transform-style
37
+ backface-visibility
38
+ border-image
39
+ box-sizing
40
+ filter
41
+ columns
42
+ column-width
43
+ column-gap
44
+ column-rule
45
+ column-rule-color
46
+ column-rule-width
47
+ column-count
48
+ column-rule-style
49
+ column-span
50
+ column-fill
51
+ break-before
52
+ break-after
53
+ break-inside
54
+ user-select
55
+ flex
56
+ flex-grow
57
+ flex-shrink
58
+ flex-basis
59
+ flex-direction
60
+ flex-wrap
61
+ flex-flow
62
+ justify-content
63
+ order
64
+ align-items
65
+ align-self
66
+ align-content
67
+ background-clip
68
+ background-origin
69
+ background-size
70
+ font-feature-settings
71
+ font-variant-ligatures
72
+ font-language-override
73
+ font-kerning
74
+ hyphens
75
+ tab-size
76
+ touch-action
77
+ text-decoration-style
78
+ text-decoration-line
79
+ text-decoration-color
80
+ text-size-adjust
81
+ clip-path
82
+ mask
83
+ mask-clip
84
+ mask-composite
85
+ mask-image
86
+ mask-origin
87
+ mask-position
88
+ mask-repeat
89
+ mask-size
90
+
91
+ # Values
92
+ linear-gradient
93
+ repeating-linear-gradient
94
+ radial-gradient
95
+ repeating-radial-gradient
96
+ flex
97
+ inline-flex
98
+ calc
99
+ max-content
100
+ min-content
101
+ fit-content
102
+ fill-available
103
+ zoom-in
104
+ zoom-out
105
+ grab
106
+ grabbing
107
+ sticky
@@ -0,0 +1,71 @@
1
+ # Identifiers covered by Bourbon mixins
2
+
3
+ # At-Rules
4
+ keyframes
5
+
6
+ # Selectors
7
+ placeholder
8
+
9
+ # Properties
10
+ animation
11
+ animation-delay
12
+ animation-direction
13
+ animation-duration
14
+ animation-fill-mode
15
+ animation-iteration-count
16
+ animation-name
17
+ animation-play-state
18
+ animation-timing-function
19
+ appearance
20
+ backface-visibility
21
+ background
22
+ border-image
23
+ border-top-left-radius
24
+ border-top-right-radius
25
+ border-bottom-right-radius
26
+ border-bottom-left-radius
27
+ box-sizing
28
+ calc
29
+ columns
30
+ column-width
31
+ column-gap
32
+ column-rule
33
+ column-rule-color
34
+ column-rule-width
35
+ column-count
36
+ column-rule-style
37
+ column-span
38
+ column-fill
39
+ filter
40
+ flex
41
+ flex-grow
42
+ flex-shrink
43
+ flex-basis
44
+ flex-direction
45
+ flex-wrap
46
+ flex-flow
47
+ justify-content
48
+ order
49
+ align-items
50
+ align-self
51
+ align-content
52
+ font-feature-settings
53
+ hyphens
54
+ perspective
55
+ perspective-origin
56
+ transform
57
+ transform-origin
58
+ transform-style
59
+ transition
60
+ transition-property
61
+ transition-duration
62
+ transition-delay
63
+ transition-timing-function
64
+ user-select
65
+
66
+
67
+ # Values
68
+ crisp-edges
69
+ optimize-contrast
70
+ linear-gradient
71
+ radial-gradient
@@ -0,0 +1,477 @@
1
+ @keyframes
2
+ align-content
3
+ align-items
4
+ align-self
5
+ alignment-adjust
6
+ alignment-baseline
7
+ all
8
+ animation
9
+ animation-delay
10
+ animation-direction
11
+ animation-duration
12
+ animation-fill-mode
13
+ animation-iteration-count
14
+ animation-name
15
+ animation-play-state
16
+ animation-timing-function
17
+ app-region
18
+ appearance
19
+ aspect-ratio
20
+ backface-visibility
21
+ background
22
+ background-attachment
23
+ background-blend-mode
24
+ background-clip
25
+ background-color
26
+ background-composite
27
+ background-image
28
+ background-origin
29
+ background-position
30
+ background-position-x
31
+ background-position-y
32
+ background-repeat
33
+ background-repeat-x
34
+ background-repeat-y
35
+ background-size
36
+ baseline-shift
37
+ bookmark-label
38
+ bookmark-level
39
+ bookmark-target
40
+ border
41
+ border-after
42
+ border-after-color
43
+ border-after-style
44
+ border-after-width
45
+ border-before
46
+ border-before-color
47
+ border-before-style
48
+ border-before-width
49
+ border-bottom
50
+ border-bottom-color
51
+ border-bottom-left-radius
52
+ border-bottom-right-radius
53
+ border-bottom-style
54
+ border-bottom-width
55
+ border-collapse
56
+ border-color
57
+ border-end
58
+ border-end-color
59
+ border-end-style
60
+ border-end-width
61
+ border-fit
62
+ border-horizontal-spacing
63
+ border-image
64
+ border-image-outset
65
+ border-image-repeat
66
+ border-image-slice
67
+ border-image-source
68
+ border-image-width
69
+ border-left
70
+ border-left-color
71
+ border-left-style
72
+ border-left-width
73
+ border-radius
74
+ border-right
75
+ border-right-color
76
+ border-right-style
77
+ border-right-width
78
+ border-spacing
79
+ border-start
80
+ border-start-color
81
+ border-start-style
82
+ border-start-width
83
+ border-style
84
+ border-top
85
+ border-top-color
86
+ border-top-left-radius
87
+ border-top-right-radius
88
+ border-top-style
89
+ border-top-width
90
+ border-vertical-spacing
91
+ border-width
92
+ bottom
93
+ box-align
94
+ box-decoration-break
95
+ box-direction
96
+ box-flex
97
+ box-flex-group
98
+ box-lines
99
+ box-ordinal-group
100
+ box-orient
101
+ box-pack
102
+ box-reflect
103
+ box-shadow
104
+ box-sizing
105
+ break-after
106
+ break-before
107
+ break-inside
108
+ buffered-rendering
109
+ caption-side
110
+ clear
111
+ clip
112
+ clip-path
113
+ clip-rule
114
+ color
115
+ color-interpolation
116
+ color-interpolation-filters
117
+ color-profile
118
+ color-rendering
119
+ column-axis
120
+ column-break-after
121
+ column-break-before
122
+ column-break-inside
123
+ column-count
124
+ column-fill
125
+ column-gap
126
+ column-progression
127
+ column-rule
128
+ column-rule-color
129
+ column-rule-style
130
+ column-rule-width
131
+ column-span
132
+ column-width
133
+ columns
134
+ content
135
+ counter-increment
136
+ counter-reset
137
+ crop
138
+ cursor
139
+ direction
140
+ display
141
+ dominant-baseline
142
+ drop-initial-after-adjust
143
+ drop-initial-after-align
144
+ drop-initial-before-adjust
145
+ drop-initial-before-align
146
+ drop-initial-size
147
+ drop-initial-value
148
+ empty-cells
149
+ enable-background
150
+ fill
151
+ fill-opacity
152
+ fill-rule
153
+ filter
154
+ fit
155
+ fit-position
156
+ flex
157
+ flex-basis
158
+ flex-direction
159
+ flex-flow
160
+ flex-grow
161
+ flex-shrink
162
+ flex-wrap
163
+ float
164
+ float-offset
165
+ flood-color
166
+ flood-opacity
167
+ flow-from
168
+ flow-into
169
+ font
170
+ font-family
171
+ font-feature-settings
172
+ font-kerning
173
+ font-size
174
+ font-size-adjust
175
+ font-size-delta
176
+ font-smoothing
177
+ font-stretch
178
+ font-style
179
+ font-variant
180
+ font-variant-ligatures
181
+ font-weight
182
+ glyph-orientation-horizontal
183
+ glyph-orientation-vertical
184
+ grid
185
+ grid-after
186
+ grid-area
187
+ grid-auto-columns
188
+ grid-auto-flow
189
+ grid-auto-rows
190
+ grid-before
191
+ grid-column
192
+ grid-columns
193
+ grid-end
194
+ grid-row
195
+ grid-rows
196
+ grid-start
197
+ grid-template
198
+ grid-template-areas
199
+ hanging-punctuation
200
+ height
201
+ highlight
202
+ hyphenate-after
203
+ hyphenate-before
204
+ hyphenate-character
205
+ hyphenate-limit-after
206
+ hyphenate-limit-before
207
+ hyphenate-limit-lines
208
+ hyphenate-lines
209
+ hyphenate-resource
210
+ hyphens
211
+ icon
212
+ image-orientation
213
+ image-rendering
214
+ image-resolution
215
+ inline-box-align
216
+ isolation
217
+ justify-content
218
+ justify-self
219
+ kerning
220
+ left
221
+ letter-spacing
222
+ lighting-color
223
+ line-align
224
+ line-box-contain
225
+ line-break
226
+ line-clamp
227
+ line-grid
228
+ line-height
229
+ line-snap
230
+ line-stacking
231
+ line-stacking-ruby
232
+ line-stacking-shift
233
+ line-stacking-strategy
234
+ list-style
235
+ list-style-image
236
+ list-style-position
237
+ list-style-type
238
+ locale
239
+ logical-height
240
+ logical-width
241
+ margin
242
+ margin-after
243
+ margin-after-collapse
244
+ margin-before
245
+ margin-before-collapse
246
+ margin-bottom
247
+ margin-bottom-collapse
248
+ margin-collapse
249
+ margin-end
250
+ margin-left
251
+ margin-right
252
+ margin-start
253
+ margin-top
254
+ margin-top-collapse
255
+ mark
256
+ mark-after
257
+ mark-before
258
+ marker
259
+ marker-end
260
+ marker-mid
261
+ marker-start
262
+ marks
263
+ marquee
264
+ marquee-direction
265
+ marquee-increment
266
+ marquee-play-count
267
+ marquee-repetition
268
+ marquee-speed
269
+ marquee-style
270
+ mask
271
+ mask-box-image
272
+ mask-box-image-outset
273
+ mask-box-image-repeat
274
+ mask-box-image-slice
275
+ mask-box-image-source
276
+ mask-box-image-width
277
+ mask-clip
278
+ mask-composite
279
+ mask-image
280
+ mask-origin
281
+ mask-position
282
+ mask-position-x
283
+ mask-position-y
284
+ mask-repeat
285
+ mask-repeat-x
286
+ mask-repeat-y
287
+ mask-size
288
+ mask-source-type
289
+ mask-type
290
+ max-height
291
+ max-logical-height
292
+ max-logical-width
293
+ max-width
294
+ max-zoom
295
+ min-height
296
+ min-logical-height
297
+ min-logical-width
298
+ min-width
299
+ min-zoom
300
+ mix-blend-mode
301
+ move-to
302
+ nav-down
303
+ nav-index
304
+ nav-left
305
+ nav-right
306
+ nav-up
307
+ object-fit
308
+ object-position
309
+ opacity
310
+ order
311
+ orientation
312
+ orphans
313
+ outline
314
+ outline-color
315
+ outline-offset
316
+ outline-style
317
+ outline-width
318
+ overflow
319
+ overflow-style
320
+ overflow-wrap
321
+ overflow-x
322
+ overflow-y
323
+ padding
324
+ padding-after
325
+ padding-before
326
+ padding-bottom
327
+ padding-end
328
+ padding-left
329
+ padding-right
330
+ padding-start
331
+ padding-top
332
+ page
333
+ page-break-after
334
+ page-break-before
335
+ page-break-inside
336
+ page-policy
337
+ paint-order
338
+ perspective
339
+ perspective-origin
340
+ perspective-origin-x
341
+ perspective-origin-y
342
+ phonemes
343
+ pointer-events
344
+ position
345
+ print-color-adjust
346
+ punctuation-trim
347
+ quotes
348
+ region-break-after
349
+ region-break-before
350
+ region-break-inside
351
+ region-overflow
352
+ rendering-intent
353
+ resize
354
+ rest
355
+ rest-after
356
+ rest-before
357
+ right
358
+ rotation
359
+ rotation-point
360
+ rtl-ordering
361
+ ruby-align
362
+ ruby-overhang
363
+ ruby-position
364
+ ruby-span
365
+ scroll-behavior
366
+ shape-image-threshold
367
+ shape-inside
368
+ shape-margin
369
+ shape-outside
370
+ shape-padding
371
+ shape-rendering
372
+ size
373
+ speak
374
+ src
375
+ stop-color
376
+ stop-opacity
377
+ string-set
378
+ stroke
379
+ stroke-dasharray
380
+ stroke-dashoffset
381
+ stroke-linecap
382
+ stroke-linejoin
383
+ stroke-miterlimit
384
+ stroke-opacity
385
+ stroke-width
386
+ svg-shadow
387
+ tab-size
388
+ table-layout
389
+ tap-highlight-color
390
+ target
391
+ target-name
392
+ target-new
393
+ target-position
394
+ text-align
395
+ text-align-last
396
+ text-anchor
397
+ text-combine
398
+ text-decoration
399
+ text-decoration-color
400
+ text-decoration-line
401
+ text-decoration-style
402
+ text-decorations-in-effect
403
+ text-emphasis
404
+ text-emphasis-color
405
+ text-emphasis-position
406
+ text-emphasis-style
407
+ text-fill-color
408
+ text-height
409
+ text-indent
410
+ text-justify
411
+ text-line-through-color
412
+ text-line-through-mode
413
+ text-line-through-style
414
+ text-line-through-width
415
+ text-orientation
416
+ text-outline
417
+ text-overflow
418
+ text-overline-color
419
+ text-overline-mode
420
+ text-overline-style
421
+ text-overline-width
422
+ text-rendering
423
+ text-security
424
+ text-size-adjust
425
+ text-shadow
426
+ text-stroke
427
+ text-stroke-color
428
+ text-stroke-width
429
+ text-transform
430
+ text-underline-color
431
+ text-underline-mode
432
+ text-underline-position
433
+ text-underline-style
434
+ text-underline-width
435
+ text-wrap
436
+ top
437
+ touch-action
438
+ touch-action-delay
439
+ transform
440
+ transform-origin
441
+ transform-origin-x
442
+ transform-origin-y
443
+ transform-origin-z
444
+ transform-style
445
+ transition
446
+ transition-delay
447
+ transition-duration
448
+ transition-property
449
+ transition-timing-function
450
+ unicode-bidi
451
+ unicode-range
452
+ user-drag
453
+ user-modify
454
+ user-select
455
+ user-zoom
456
+ vector-effect
457
+ vertical-align
458
+ visibility
459
+ voice-balance
460
+ voice-duration
461
+ voice-pitch
462
+ voice-pitch-range
463
+ voice-rate
464
+ voice-stress
465
+ voice-volume
466
+ white-space
467
+ widows
468
+ width
469
+ will-change
470
+ word-break
471
+ word-spacing
472
+ word-wrap
473
+ wrap-flow
474
+ wrap-through
475
+ writing-mode
476
+ z-index
477
+ zoom