scss_lint 0.38.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (157) hide show
  1. checksums.yaml +7 -0
  2. data/bin/scss-lint +6 -0
  3. data/config/default.yml +205 -0
  4. data/data/prefixed-identifiers/base.txt +107 -0
  5. data/data/prefixed-identifiers/bourbon.txt +71 -0
  6. data/data/properties.txt +477 -0
  7. data/data/property-sort-orders/concentric.txt +134 -0
  8. data/data/property-sort-orders/recess.txt +149 -0
  9. data/data/property-sort-orders/smacss.txt +137 -0
  10. data/lib/scss_lint.rb +31 -0
  11. data/lib/scss_lint/cli.rb +215 -0
  12. data/lib/scss_lint/config.rb +251 -0
  13. data/lib/scss_lint/constants.rb +8 -0
  14. data/lib/scss_lint/control_comment_processor.rb +126 -0
  15. data/lib/scss_lint/engine.rb +56 -0
  16. data/lib/scss_lint/exceptions.rb +21 -0
  17. data/lib/scss_lint/file_finder.rb +68 -0
  18. data/lib/scss_lint/lint.rb +24 -0
  19. data/lib/scss_lint/linter.rb +161 -0
  20. data/lib/scss_lint/linter/bang_format.rb +52 -0
  21. data/lib/scss_lint/linter/border_zero.rb +39 -0
  22. data/lib/scss_lint/linter/color_keyword.rb +32 -0
  23. data/lib/scss_lint/linter/color_variable.rb +60 -0
  24. data/lib/scss_lint/linter/comment.rb +21 -0
  25. data/lib/scss_lint/linter/compass.rb +7 -0
  26. data/lib/scss_lint/linter/compass/property_with_mixin.rb +47 -0
  27. data/lib/scss_lint/linter/debug_statement.rb +10 -0
  28. data/lib/scss_lint/linter/declaration_order.rb +71 -0
  29. data/lib/scss_lint/linter/duplicate_property.rb +58 -0
  30. data/lib/scss_lint/linter/else_placement.rb +48 -0
  31. data/lib/scss_lint/linter/empty_line_between_blocks.rb +85 -0
  32. data/lib/scss_lint/linter/empty_rule.rb +11 -0
  33. data/lib/scss_lint/linter/final_newline.rb +20 -0
  34. data/lib/scss_lint/linter/hex_length.rb +56 -0
  35. data/lib/scss_lint/linter/hex_notation.rb +38 -0
  36. data/lib/scss_lint/linter/hex_validation.rb +23 -0
  37. data/lib/scss_lint/linter/id_selector.rb +10 -0
  38. data/lib/scss_lint/linter/import_path.rb +62 -0
  39. data/lib/scss_lint/linter/important_rule.rb +12 -0
  40. data/lib/scss_lint/linter/indentation.rb +197 -0
  41. data/lib/scss_lint/linter/leading_zero.rb +49 -0
  42. data/lib/scss_lint/linter/mergeable_selector.rb +60 -0
  43. data/lib/scss_lint/linter/name_format.rb +117 -0
  44. data/lib/scss_lint/linter/nesting_depth.rb +24 -0
  45. data/lib/scss_lint/linter/placeholder_in_extend.rb +22 -0
  46. data/lib/scss_lint/linter/property_count.rb +44 -0
  47. data/lib/scss_lint/linter/property_sort_order.rb +198 -0
  48. data/lib/scss_lint/linter/property_spelling.rb +49 -0
  49. data/lib/scss_lint/linter/property_units.rb +59 -0
  50. data/lib/scss_lint/linter/qualifying_element.rb +42 -0
  51. data/lib/scss_lint/linter/selector_depth.rb +64 -0
  52. data/lib/scss_lint/linter/selector_format.rb +102 -0
  53. data/lib/scss_lint/linter/shorthand.rb +139 -0
  54. data/lib/scss_lint/linter/single_line_per_property.rb +59 -0
  55. data/lib/scss_lint/linter/single_line_per_selector.rb +35 -0
  56. data/lib/scss_lint/linter/space_after_comma.rb +110 -0
  57. data/lib/scss_lint/linter/space_after_property_colon.rb +92 -0
  58. data/lib/scss_lint/linter/space_after_property_name.rb +27 -0
  59. data/lib/scss_lint/linter/space_before_brace.rb +72 -0
  60. data/lib/scss_lint/linter/space_between_parens.rb +35 -0
  61. data/lib/scss_lint/linter/string_quotes.rb +94 -0
  62. data/lib/scss_lint/linter/trailing_semicolon.rb +67 -0
  63. data/lib/scss_lint/linter/trailing_zero.rb +41 -0
  64. data/lib/scss_lint/linter/unnecessary_mantissa.rb +42 -0
  65. data/lib/scss_lint/linter/unnecessary_parent_reference.rb +49 -0
  66. data/lib/scss_lint/linter/url_format.rb +56 -0
  67. data/lib/scss_lint/linter/url_quotes.rb +27 -0
  68. data/lib/scss_lint/linter/variable_for_property.rb +30 -0
  69. data/lib/scss_lint/linter/vendor_prefix.rb +64 -0
  70. data/lib/scss_lint/linter/zero_unit.rb +39 -0
  71. data/lib/scss_lint/linter_registry.rb +26 -0
  72. data/lib/scss_lint/location.rb +38 -0
  73. data/lib/scss_lint/options.rb +109 -0
  74. data/lib/scss_lint/rake_task.rb +106 -0
  75. data/lib/scss_lint/reporter.rb +18 -0
  76. data/lib/scss_lint/reporter/config_reporter.rb +26 -0
  77. data/lib/scss_lint/reporter/default_reporter.rb +27 -0
  78. data/lib/scss_lint/reporter/files_reporter.rb +8 -0
  79. data/lib/scss_lint/reporter/json_reporter.rb +30 -0
  80. data/lib/scss_lint/reporter/xml_reporter.rb +33 -0
  81. data/lib/scss_lint/runner.rb +51 -0
  82. data/lib/scss_lint/sass/script.rb +78 -0
  83. data/lib/scss_lint/sass/tree.rb +168 -0
  84. data/lib/scss_lint/selector_visitor.rb +34 -0
  85. data/lib/scss_lint/utils.rb +112 -0
  86. data/lib/scss_lint/version.rb +4 -0
  87. data/spec/scss_lint/cli_spec.rb +177 -0
  88. data/spec/scss_lint/config_spec.rb +253 -0
  89. data/spec/scss_lint/engine_spec.rb +24 -0
  90. data/spec/scss_lint/file_finder_spec.rb +134 -0
  91. data/spec/scss_lint/linter/bang_format_spec.rb +121 -0
  92. data/spec/scss_lint/linter/border_zero_spec.rb +118 -0
  93. data/spec/scss_lint/linter/color_keyword_spec.rb +83 -0
  94. data/spec/scss_lint/linter/color_variable_spec.rb +155 -0
  95. data/spec/scss_lint/linter/comment_spec.rb +79 -0
  96. data/spec/scss_lint/linter/compass/property_with_mixin_spec.rb +55 -0
  97. data/spec/scss_lint/linter/debug_statement_spec.rb +21 -0
  98. data/spec/scss_lint/linter/declaration_order_spec.rb +575 -0
  99. data/spec/scss_lint/linter/duplicate_property_spec.rb +189 -0
  100. data/spec/scss_lint/linter/else_placement_spec.rb +106 -0
  101. data/spec/scss_lint/linter/empty_line_between_blocks_spec.rb +276 -0
  102. data/spec/scss_lint/linter/empty_rule_spec.rb +27 -0
  103. data/spec/scss_lint/linter/final_newline_spec.rb +49 -0
  104. data/spec/scss_lint/linter/hex_length_spec.rb +104 -0
  105. data/spec/scss_lint/linter/hex_notation_spec.rb +104 -0
  106. data/spec/scss_lint/linter/hex_validation_spec.rb +40 -0
  107. data/spec/scss_lint/linter/id_selector_spec.rb +62 -0
  108. data/spec/scss_lint/linter/import_path_spec.rb +300 -0
  109. data/spec/scss_lint/linter/important_rule_spec.rb +43 -0
  110. data/spec/scss_lint/linter/indentation_spec.rb +347 -0
  111. data/spec/scss_lint/linter/leading_zero_spec.rb +233 -0
  112. data/spec/scss_lint/linter/mergeable_selector_spec.rb +283 -0
  113. data/spec/scss_lint/linter/name_format_spec.rb +282 -0
  114. data/spec/scss_lint/linter/nesting_depth_spec.rb +114 -0
  115. data/spec/scss_lint/linter/placeholder_in_extend_spec.rb +63 -0
  116. data/spec/scss_lint/linter/property_count_spec.rb +104 -0
  117. data/spec/scss_lint/linter/property_sort_order_spec.rb +482 -0
  118. data/spec/scss_lint/linter/property_spelling_spec.rb +84 -0
  119. data/spec/scss_lint/linter/property_units_spec.rb +229 -0
  120. data/spec/scss_lint/linter/qualifying_element_spec.rb +125 -0
  121. data/spec/scss_lint/linter/selector_depth_spec.rb +159 -0
  122. data/spec/scss_lint/linter/selector_format_spec.rb +632 -0
  123. data/spec/scss_lint/linter/shorthand_spec.rb +198 -0
  124. data/spec/scss_lint/linter/single_line_per_property_spec.rb +73 -0
  125. data/spec/scss_lint/linter/single_line_per_selector_spec.rb +130 -0
  126. data/spec/scss_lint/linter/space_after_comma_spec.rb +332 -0
  127. data/spec/scss_lint/linter/space_after_property_colon_spec.rb +373 -0
  128. data/spec/scss_lint/linter/space_after_property_name_spec.rb +37 -0
  129. data/spec/scss_lint/linter/space_before_brace_spec.rb +829 -0
  130. data/spec/scss_lint/linter/space_between_parens_spec.rb +263 -0
  131. data/spec/scss_lint/linter/string_quotes_spec.rb +335 -0
  132. data/spec/scss_lint/linter/trailing_semicolon_spec.rb +304 -0
  133. data/spec/scss_lint/linter/trailing_zero_spec.rb +176 -0
  134. data/spec/scss_lint/linter/unnecessary_mantissa_spec.rb +67 -0
  135. data/spec/scss_lint/linter/unnecessary_parent_reference_spec.rb +98 -0
  136. data/spec/scss_lint/linter/url_format_spec.rb +55 -0
  137. data/spec/scss_lint/linter/url_quotes_spec.rb +73 -0
  138. data/spec/scss_lint/linter/variable_for_property_spec.rb +145 -0
  139. data/spec/scss_lint/linter/vendor_prefix_spec.rb +371 -0
  140. data/spec/scss_lint/linter/zero_unit_spec.rb +113 -0
  141. data/spec/scss_lint/linter_registry_spec.rb +50 -0
  142. data/spec/scss_lint/linter_spec.rb +292 -0
  143. data/spec/scss_lint/location_spec.rb +42 -0
  144. data/spec/scss_lint/options_spec.rb +34 -0
  145. data/spec/scss_lint/rake_task_spec.rb +43 -0
  146. data/spec/scss_lint/reporter/config_reporter_spec.rb +42 -0
  147. data/spec/scss_lint/reporter/default_reporter_spec.rb +73 -0
  148. data/spec/scss_lint/reporter/files_reporter_spec.rb +38 -0
  149. data/spec/scss_lint/reporter/json_reporter_spec.rb +96 -0
  150. data/spec/scss_lint/reporter/xml_reporter_spec.rb +103 -0
  151. data/spec/scss_lint/reporter_spec.rb +11 -0
  152. data/spec/scss_lint/runner_spec.rb +123 -0
  153. data/spec/scss_lint/selector_visitor_spec.rb +264 -0
  154. data/spec/spec_helper.rb +34 -0
  155. data/spec/support/isolated_environment.rb +25 -0
  156. data/spec/support/matchers/report_lint.rb +48 -0
  157. metadata +328 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: cb1cc64b17da57ae25e2562d08665b6bb4712a55
4
+ data.tar.gz: d66077cdb7b9abcc5b4f69bf03035d08851726b0
5
+ SHA512:
6
+ metadata.gz: 9ea54c1649b43fb5dc69e26623c6b7c8be57e9487b309af18160cdbc7afae8104175566bb571b24e923f59091df2d7cf9b751c1a852b7cce3729882295d5a941
7
+ data.tar.gz: a36364675cff2a840104d1e31262b2db9b3d0f35e14d77b04979f15ef1d4c52eafadac1ccdcf8960994c05a9a121a4c5f65f704922c13f244b0e38475408a7d2
data/bin/scss-lint ADDED
@@ -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,205 @@
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
+ min_properties: 2
119
+ separate_groups: false
120
+
121
+ PropertySpelling:
122
+ enabled: true
123
+ extra_properties: []
124
+
125
+ QualifyingElement:
126
+ enabled: true
127
+ allow_element_with_attribute: false
128
+ allow_element_with_class: false
129
+ allow_element_with_id: false
130
+
131
+ SelectorDepth:
132
+ enabled: true
133
+ max_depth: 3
134
+
135
+ SelectorFormat:
136
+ enabled: true
137
+ convention: hyphenated_lowercase # or 'strict_BEM', or 'hyphenated_BEM', or 'snake_case', or 'camel_case', or a regex pattern
138
+
139
+ Shorthand:
140
+ enabled: true
141
+ allowed_shorthands: [1, 2, 3]
142
+
143
+ SingleLinePerProperty:
144
+ enabled: true
145
+ allow_single_line_rule_sets: true
146
+
147
+ SingleLinePerSelector:
148
+ enabled: true
149
+
150
+ SpaceAfterComma:
151
+ enabled: true
152
+
153
+ SpaceAfterPropertyColon:
154
+ enabled: true
155
+ style: one_space # or 'no_space', or 'at_least_one_space', or 'aligned'
156
+
157
+ SpaceAfterPropertyName:
158
+ enabled: true
159
+
160
+ SpaceBeforeBrace:
161
+ enabled: true
162
+ style: space # or 'new_line'
163
+ allow_single_line_padding: false
164
+
165
+ SpaceBetweenParens:
166
+ enabled: true
167
+ spaces: 0
168
+
169
+ StringQuotes:
170
+ enabled: true
171
+ style: single_quotes # or double_quotes
172
+
173
+ TrailingSemicolon:
174
+ enabled: true
175
+
176
+ TrailingZero:
177
+ enabled: false
178
+
179
+ UnnecessaryMantissa:
180
+ enabled: true
181
+
182
+ UnnecessaryParentReference:
183
+ enabled: true
184
+
185
+ UrlFormat:
186
+ enabled: true
187
+
188
+ UrlQuotes:
189
+ enabled: true
190
+
191
+ VariableForProperty:
192
+ enabled: false
193
+ properties: []
194
+
195
+ VendorPrefix:
196
+ enabled: true
197
+ identifier_list: base
198
+ additional_identifiers: []
199
+ excluded_identifiers: []
200
+
201
+ ZeroUnit:
202
+ enabled: true
203
+
204
+ Compass::*:
205
+ 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