bourbon 4.2.6 → 5.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (259) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +34 -0
  3. data/.github/ISSUE_TEMPLATE.md +22 -0
  4. data/.github/PULL_REQUEST_TEMPLATE.md +10 -0
  5. data/.npmignore +6 -1
  6. data/.ruby-version +1 -0
  7. data/.scss-lint.yml +100 -8
  8. data/.tool-versions +1 -0
  9. data/CHANGELOG.md +406 -0
  10. data/CODE_OF_CONDUCT.md +6 -0
  11. data/CONTRIBUTING.md +77 -28
  12. data/Gemfile +1 -1
  13. data/LICENSE.md +1 -1
  14. data/README.md +161 -92
  15. data/RELEASING.md +34 -0
  16. data/Rakefile +0 -2
  17. data/bin/bourbon +1 -2
  18. data/bourbon.gemspec +32 -24
  19. data/bower.json +22 -19
  20. data/core/_bourbon.scss +54 -0
  21. data/core/bourbon/helpers/_buttons-list.scss +14 -0
  22. data/core/bourbon/helpers/_scales.scss +27 -0
  23. data/core/bourbon/helpers/_text-inputs-list.scss +26 -0
  24. data/core/bourbon/library/_border-color.scss +26 -0
  25. data/core/bourbon/library/_border-radius.scss +85 -0
  26. data/core/bourbon/library/_border-style.scss +25 -0
  27. data/core/bourbon/library/_border-width.scss +25 -0
  28. data/core/bourbon/library/_buttons.scss +84 -0
  29. data/{app/assets/stylesheets/addons → core/bourbon/library}/_clearfix.scss +5 -5
  30. data/core/bourbon/library/_contrast-switch.scss +81 -0
  31. data/{app/assets/stylesheets/addons → core/bourbon/library}/_ellipsis.scss +12 -6
  32. data/core/bourbon/library/_font-face.scss +65 -0
  33. data/core/bourbon/library/_font-stacks.scss +248 -0
  34. data/core/bourbon/library/_hide-text.scss +24 -0
  35. data/core/bourbon/library/_hide-visually.scss +70 -0
  36. data/core/bourbon/library/_margin.scss +37 -0
  37. data/core/bourbon/library/_modular-scale.scss +120 -0
  38. data/core/bourbon/library/_overflow-wrap.scss +24 -0
  39. data/core/bourbon/library/_padding.scss +36 -0
  40. data/core/bourbon/library/_position.scss +62 -0
  41. data/core/bourbon/library/_prefixer.scss +37 -0
  42. data/core/bourbon/library/_shade.scss +32 -0
  43. data/core/bourbon/library/_size.scss +50 -0
  44. data/core/bourbon/library/_strip-unit.scss +17 -0
  45. data/core/bourbon/library/_text-inputs.scss +163 -0
  46. data/{app/assets/stylesheets/addons → core/bourbon/library}/_timing-functions.scss +7 -3
  47. data/core/bourbon/library/_tint.scss +32 -0
  48. data/core/bourbon/library/_triangle.scss +82 -0
  49. data/core/bourbon/library/_value-prefixer.scss +37 -0
  50. data/core/bourbon/settings/_settings.scss +75 -0
  51. data/core/bourbon/utilities/_assign-inputs.scss +28 -0
  52. data/core/bourbon/utilities/_compact-shorthand.scss +39 -0
  53. data/core/bourbon/utilities/_contrast-ratio.scss +31 -0
  54. data/core/bourbon/utilities/_directional-property.scss +70 -0
  55. data/core/bourbon/utilities/_fetch-bourbon-setting.scss +16 -0
  56. data/{app/assets/stylesheets/helpers → core/bourbon/utilities}/_font-source-declaration.scss +23 -15
  57. data/core/bourbon/utilities/_gamma.scss +24 -0
  58. data/core/bourbon/utilities/_lightness.scss +24 -0
  59. data/{app/assets/stylesheets/functions/_unpack.scss → core/bourbon/utilities/_unpack-shorthand.scss} +8 -6
  60. data/{app/assets/stylesheets/functions → core/bourbon/validators}/_contains-falsy.scss +6 -6
  61. data/{app/assets/stylesheets/functions → core/bourbon/validators}/_contains.scss +8 -8
  62. data/core/bourbon/validators/_is-color.scss +13 -0
  63. data/{app/assets/stylesheets/functions → core/bourbon/validators}/_is-length.scss +6 -2
  64. data/core/bourbon/validators/_is-number.scss +15 -0
  65. data/core/bourbon/validators/_is-size.scss +18 -0
  66. data/features/install.feature +0 -1
  67. data/features/step_definitions/bourbon_steps.rb +13 -5
  68. data/features/update.feature +0 -1
  69. data/features/version.feature +0 -2
  70. data/index.js +2 -2
  71. data/lib/bourbon/generator.rb +11 -10
  72. data/lib/bourbon/version.rb +1 -1
  73. data/lib/bourbon.rb +3 -19
  74. data/package.json +18 -17
  75. data/spec/bourbon/{addons → library}/border_color_spec.rb +8 -8
  76. data/spec/bourbon/{addons → library}/border_radius_spec.rb +1 -1
  77. data/spec/bourbon/{addons → library}/border_style_spec.rb +1 -1
  78. data/spec/bourbon/{addons → library}/border_width_spec.rb +1 -1
  79. data/spec/bourbon/{addons → library}/buttons_spec.rb +4 -4
  80. data/spec/bourbon/{addons → library}/clearfix_spec.rb +3 -3
  81. data/spec/bourbon/library/contrast_switch_spec.rb +23 -0
  82. data/spec/bourbon/{addons → library}/ellipsis_spec.rb +1 -1
  83. data/spec/bourbon/library/font_face_spec_1.rb +16 -0
  84. data/spec/bourbon/library/font_face_spec_2.rb +21 -0
  85. data/spec/bourbon/library/font_face_spec_3.rb +16 -0
  86. data/spec/bourbon/library/font_face_spec_4.rb +17 -0
  87. data/spec/bourbon/library/font_stacks_spec.rb +42 -0
  88. data/spec/bourbon/{addons → library}/hide_text_spec.rb +1 -1
  89. data/spec/bourbon/library/hide_visually_spec.rb +37 -0
  90. data/spec/bourbon/{addons → library}/margin_spec.rb +1 -1
  91. data/spec/bourbon/{functions → library}/modular_scale_spec.rb +6 -6
  92. data/spec/bourbon/library/overflow_wrap_spec.rb +27 -0
  93. data/spec/bourbon/{addons → library}/padding_spec.rb +1 -1
  94. data/spec/bourbon/{addons → library}/position_spec.rb +1 -1
  95. data/spec/bourbon/library/prefixer_spec.rb +34 -0
  96. data/spec/bourbon/{functions → library}/shade_spec.rb +1 -1
  97. data/spec/bourbon/{addons → library}/size_spec.rb +1 -1
  98. data/spec/bourbon/{functions/strip_units_spec.rb → library/strip_unit_spec.rb} +2 -2
  99. data/spec/bourbon/{addons → library}/text_inputs_spec.rb +25 -15
  100. data/spec/bourbon/{functions → library}/tint_spec.rb +1 -1
  101. data/spec/bourbon/library/triangle_spec.rb +31 -0
  102. data/spec/bourbon/{functions → utilities}/assign_inputs_spec.rb +8 -8
  103. data/spec/bourbon/utilities/compact_shorthand_spec.rb +30 -0
  104. data/spec/bourbon/utilities/contrast_ratio_spec.rb +23 -0
  105. data/spec/bourbon/utilities/directional_property_spec.rb +28 -0
  106. data/spec/bourbon/utilities/fetch_bourbon_setting_spec.rb +31 -0
  107. data/spec/bourbon/{helpers → utilities}/font_source_declaration_spec.rb +1 -1
  108. data/spec/bourbon/utilities/gamma_spec.rb +23 -0
  109. data/spec/bourbon/utilities/lightness_spec.rb +31 -0
  110. data/spec/bourbon/{functions → utilities}/unpack_spec.rb +1 -1
  111. data/spec/bourbon/{functions → validators}/contains_spec.rb +1 -1
  112. data/spec/bourbon/{functions → validators}/is_length_spec.rb +1 -1
  113. data/spec/bourbon/{functions → validators}/is_number_spec.rb +1 -1
  114. data/spec/bourbon/{functions → validators}/is_size_spec.rb +1 -1
  115. data/spec/fixtures/_setup.scss +1 -1
  116. data/spec/fixtures/{addons → library}/border-color.scss +4 -4
  117. data/spec/fixtures/{addons → library}/border-radius.scss +0 -0
  118. data/spec/fixtures/{addons → library}/border-style.scss +0 -0
  119. data/spec/fixtures/{addons → library}/border-width.scss +0 -0
  120. data/spec/fixtures/{addons → library}/buttons.scss +0 -0
  121. data/spec/fixtures/{addons → library}/clearfix.scss +0 -0
  122. data/spec/fixtures/library/contrast-switch.scss +9 -0
  123. data/spec/fixtures/{addons → library}/ellipsis.scss +0 -0
  124. data/spec/fixtures/library/font-face-1.scss +6 -0
  125. data/spec/fixtures/library/font-face-2.scss +10 -0
  126. data/spec/fixtures/library/font-face-3.scss +8 -0
  127. data/spec/fixtures/library/font-face-4.scss +7 -0
  128. data/spec/fixtures/library/font-stacks.scss +41 -0
  129. data/spec/fixtures/{addons → library}/hide-text.scss +0 -0
  130. data/spec/fixtures/library/hide-visually.scss +9 -0
  131. data/spec/fixtures/{addons → library}/margin.scss +0 -0
  132. data/spec/fixtures/{functions → library}/modular-scale.scss +0 -0
  133. data/spec/fixtures/library/overflow-wrap.scss +9 -0
  134. data/spec/fixtures/{addons → library}/padding.scss +0 -0
  135. data/spec/fixtures/{addons → library}/position.scss +0 -4
  136. data/spec/fixtures/library/prefixer.scss +13 -0
  137. data/spec/fixtures/{functions → library}/shade.scss +1 -1
  138. data/spec/fixtures/{addons → library}/size.scss +2 -2
  139. data/spec/fixtures/library/strip-unit.scss +17 -0
  140. data/spec/fixtures/{addons → library}/text-inputs.scss +4 -0
  141. data/spec/fixtures/{functions → library}/tint.scss +1 -1
  142. data/spec/fixtures/library/triangle.scss +9 -0
  143. data/spec/fixtures/utilities/assign-inputs.scss +19 -0
  144. data/spec/fixtures/utilities/compact-shorthand.scss +21 -0
  145. data/spec/fixtures/utilities/contrast-ratio.scss +9 -0
  146. data/spec/fixtures/utilities/directional-property.scss +17 -0
  147. data/spec/fixtures/utilities/fetch-bourbon-setting.scss +16 -0
  148. data/spec/fixtures/utilities/font-source-declaration.scss +11 -0
  149. data/spec/fixtures/utilities/gamma.scss +9 -0
  150. data/spec/fixtures/utilities/lightness.scss +13 -0
  151. data/spec/fixtures/utilities/unpack.scss +17 -0
  152. data/spec/fixtures/{functions → validators}/contains.scss +1 -1
  153. data/spec/fixtures/{functions → validators}/is-length.scss +1 -1
  154. data/spec/fixtures/{functions → validators}/is-number.scss +1 -1
  155. data/spec/fixtures/{functions → validators}/is-size.scss +1 -1
  156. data/spec/support/matchers/have_value.rb +1 -1
  157. metadata +267 -272
  158. data/app/assets/stylesheets/_bourbon-deprecated-upcoming.scss +0 -411
  159. data/app/assets/stylesheets/_bourbon.scss +0 -87
  160. data/app/assets/stylesheets/addons/_border-color.scss +0 -26
  161. data/app/assets/stylesheets/addons/_border-radius.scss +0 -48
  162. data/app/assets/stylesheets/addons/_border-style.scss +0 -25
  163. data/app/assets/stylesheets/addons/_border-width.scss +0 -25
  164. data/app/assets/stylesheets/addons/_buttons.scss +0 -64
  165. data/app/assets/stylesheets/addons/_font-stacks.scss +0 -31
  166. data/app/assets/stylesheets/addons/_hide-text.scss +0 -27
  167. data/app/assets/stylesheets/addons/_margin.scss +0 -26
  168. data/app/assets/stylesheets/addons/_padding.scss +0 -26
  169. data/app/assets/stylesheets/addons/_position.scss +0 -48
  170. data/app/assets/stylesheets/addons/_prefixer.scss +0 -66
  171. data/app/assets/stylesheets/addons/_retina-image.scss +0 -25
  172. data/app/assets/stylesheets/addons/_size.scss +0 -51
  173. data/app/assets/stylesheets/addons/_text-inputs.scss +0 -113
  174. data/app/assets/stylesheets/addons/_triangle.scss +0 -63
  175. data/app/assets/stylesheets/addons/_word-wrap.scss +0 -29
  176. data/app/assets/stylesheets/css3/_animation.scss +0 -43
  177. data/app/assets/stylesheets/css3/_appearance.scss +0 -3
  178. data/app/assets/stylesheets/css3/_backface-visibility.scss +0 -3
  179. data/app/assets/stylesheets/css3/_background-image.scss +0 -42
  180. data/app/assets/stylesheets/css3/_background.scss +0 -55
  181. data/app/assets/stylesheets/css3/_border-image.scss +0 -59
  182. data/app/assets/stylesheets/css3/_calc.scss +0 -4
  183. data/app/assets/stylesheets/css3/_columns.scss +0 -47
  184. data/app/assets/stylesheets/css3/_filter.scss +0 -4
  185. data/app/assets/stylesheets/css3/_flex-box.scss +0 -287
  186. data/app/assets/stylesheets/css3/_font-face.scss +0 -24
  187. data/app/assets/stylesheets/css3/_font-feature-settings.scss +0 -4
  188. data/app/assets/stylesheets/css3/_hidpi-media-query.scss +0 -10
  189. data/app/assets/stylesheets/css3/_hyphens.scss +0 -4
  190. data/app/assets/stylesheets/css3/_image-rendering.scss +0 -14
  191. data/app/assets/stylesheets/css3/_keyframes.scss +0 -36
  192. data/app/assets/stylesheets/css3/_linear-gradient.scss +0 -38
  193. data/app/assets/stylesheets/css3/_perspective.scss +0 -8
  194. data/app/assets/stylesheets/css3/_placeholder.scss +0 -8
  195. data/app/assets/stylesheets/css3/_radial-gradient.scss +0 -39
  196. data/app/assets/stylesheets/css3/_selection.scss +0 -42
  197. data/app/assets/stylesheets/css3/_text-decoration.scss +0 -19
  198. data/app/assets/stylesheets/css3/_transform.scss +0 -15
  199. data/app/assets/stylesheets/css3/_transition.scss +0 -71
  200. data/app/assets/stylesheets/css3/_user-select.scss +0 -3
  201. data/app/assets/stylesheets/functions/_assign-inputs.scss +0 -11
  202. data/app/assets/stylesheets/functions/_is-light.scss +0 -21
  203. data/app/assets/stylesheets/functions/_is-number.scss +0 -11
  204. data/app/assets/stylesheets/functions/_is-size.scss +0 -13
  205. data/app/assets/stylesheets/functions/_modular-scale.scss +0 -69
  206. data/app/assets/stylesheets/functions/_px-to-em.scss +0 -13
  207. data/app/assets/stylesheets/functions/_px-to-rem.scss +0 -15
  208. data/app/assets/stylesheets/functions/_shade.scss +0 -24
  209. data/app/assets/stylesheets/functions/_strip-units.scss +0 -17
  210. data/app/assets/stylesheets/functions/_tint.scss +0 -24
  211. data/app/assets/stylesheets/functions/_transition-property-name.scss +0 -22
  212. data/app/assets/stylesheets/helpers/_convert-units.scss +0 -21
  213. data/app/assets/stylesheets/helpers/_directional-values.scss +0 -96
  214. data/app/assets/stylesheets/helpers/_gradient-positions-parser.scss +0 -13
  215. data/app/assets/stylesheets/helpers/_linear-angle-parser.scss +0 -25
  216. data/app/assets/stylesheets/helpers/_linear-gradient-parser.scss +0 -41
  217. data/app/assets/stylesheets/helpers/_linear-positions-parser.scss +0 -61
  218. data/app/assets/stylesheets/helpers/_linear-side-corner-parser.scss +0 -31
  219. data/app/assets/stylesheets/helpers/_radial-arg-parser.scss +0 -69
  220. data/app/assets/stylesheets/helpers/_radial-gradient-parser.scss +0 -50
  221. data/app/assets/stylesheets/helpers/_radial-positions-parser.scss +0 -18
  222. data/app/assets/stylesheets/helpers/_render-gradients.scss +0 -26
  223. data/app/assets/stylesheets/helpers/_shape-size-stripper.scss +0 -10
  224. data/app/assets/stylesheets/helpers/_str-to-num.scss +0 -50
  225. data/app/assets/stylesheets/settings/_asset-pipeline.scss +0 -7
  226. data/app/assets/stylesheets/settings/_prefixer.scss +0 -9
  227. data/app/assets/stylesheets/settings/_px-to-em.scss +0 -1
  228. data/lib/bourbon/engine.rb +0 -5
  229. data/lib/tasks/install.rake +0 -20
  230. data/sache.json +0 -5
  231. data/spec/bourbon/addons/font_stacks_spec.rb +0 -25
  232. data/spec/bourbon/addons/retina_image_spec.rb +0 -57
  233. data/spec/bourbon/addons/triangle_spec.rb +0 -32
  234. data/spec/bourbon/addons/word_wrap_spec.rb +0 -29
  235. data/spec/bourbon/css3/font_face_spec.rb +0 -45
  236. data/spec/bourbon/css3/hidpi_media_query_spec.rb +0 -23
  237. data/spec/bourbon/functions/is_light_spec.rb +0 -37
  238. data/spec/bourbon/functions/px_to_em_spec.rb +0 -31
  239. data/spec/bourbon/functions/px_to_rem_spec.rb +0 -25
  240. data/spec/bourbon/helpers/convert_units_spec.rb +0 -31
  241. data/spec/bourbon/helpers/directional_values_spec.rb +0 -39
  242. data/spec/bourbon/helpers/str_to_num_spec.rb +0 -25
  243. data/spec/fixtures/addons/font-stacks.scss +0 -21
  244. data/spec/fixtures/addons/retina-image.scss +0 -21
  245. data/spec/fixtures/addons/triangle.scss +0 -9
  246. data/spec/fixtures/addons/word-wrap.scss +0 -9
  247. data/spec/fixtures/css3/font-face.scss +0 -6
  248. data/spec/fixtures/css3/hidpi-media-query.scss +0 -13
  249. data/spec/fixtures/functions/assign-inputs.scss +0 -19
  250. data/spec/fixtures/functions/is-light.scss +0 -29
  251. data/spec/fixtures/functions/px-to-em.scss +0 -17
  252. data/spec/fixtures/functions/px-to-rem.scss +0 -15
  253. data/spec/fixtures/functions/strip-units.scss +0 -17
  254. data/spec/fixtures/functions/unpack.scss +0 -17
  255. data/spec/fixtures/helpers/convert-units.scss +0 -17
  256. data/spec/fixtures/helpers/directional-values.scss +0 -29
  257. data/spec/fixtures/helpers/font-source-declaration.scss +0 -10
  258. data/spec/fixtures/helpers/str-to-num.scss +0 -13
  259. data/spec/support/matchers/be_contained_in.rb +0 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: de84ed68e6d21b4990f4ea6fd91f1904e8d80844
4
- data.tar.gz: e2e498328e79e9e0edaff094663dfdd0c92d62a7
3
+ metadata.gz: d4516c806404d02f78bef5a59f9d5104333792bb
4
+ data.tar.gz: f671d4509598c559ca201c22058d6456dfcfd3ae
5
5
  SHA512:
6
- metadata.gz: 4544cdf683ea952bbb881bc3d716dafd27cd6e089771c2850388e15d105591e310bc8e0ed34a53ff114133b677c3d5fba94620bb47ddacc24cbc56d847a7181e
7
- data.tar.gz: 13710f7c12754247585c942db593cee8d9b8c891554f41fdf5df0811fd72c3a16a034bf8629671adc28542672577be8316b02f85be38bf96b6f2106031a6c8b2
6
+ metadata.gz: '09cd044416d2ca0672d2c2fbaafe24b6bdf277ab2b6c64d339b876d6ada6ff9a8b4fe0b7589de0fd325a337c3afa3c4ee7c864b0cd060cad1b66c79945b6281a'
7
+ data.tar.gz: 5cde725ff3c1713c31537426d5035bfb578717ad21d822864642608ad581caba6e486a9df673dfc3ddb6d9eec10639cfa17bf8e5ec692facb4eb07151a87327b
@@ -0,0 +1,34 @@
1
+ version: 2
2
+
3
+ jobs:
4
+ build:
5
+ docker:
6
+ - image: circleci/ruby:2.4.3-node
7
+
8
+ steps:
9
+ - checkout
10
+
11
+ - restore_cache:
12
+ keys:
13
+ - bourbon-{{ arch }}-{{ checksum "bourbon.gemspec" }}
14
+
15
+ - run:
16
+ name: Install Ruby dependencies
17
+ command: bundle install --path vendor/bundle
18
+
19
+ - run:
20
+ name: Install SassDoc
21
+ command: sudo npm install -g sassdoc@2.5.0
22
+
23
+ - save_cache:
24
+ key: bourbon-{{ arch }}-{{ checksum "bourbon.gemspec" }}
25
+ paths:
26
+ - vendor/bundle
27
+
28
+ - run:
29
+ name: Run the tests
30
+ command: bundle exec rake
31
+
32
+ - run:
33
+ name: Parse SassDoc comments
34
+ command: sassdoc core/ --parse --verbose --strict
@@ -0,0 +1,22 @@
1
+ <!-- Feel free to remove any part of this issue template that is not relevant -->
2
+ <!-- Providing context helps us come up with a useful solution -->
3
+
4
+ ## Description
5
+
6
+ <!-- What did you expect to happen? What happened instead? Was a specific error thrown? -->
7
+
8
+ ## Steps to Reproduce
9
+
10
+ <!-- If you can reproduce the bug in a CodePen, link to it here -->
11
+
12
+ 1. Step 1…
13
+ 2.
14
+ 3.
15
+
16
+ ## Development Environment
17
+
18
+ <!--- Include as many relevant details about the environment you experienced the bug in -->
19
+
20
+ - Bourbon version:
21
+ - Platform:
22
+ - Link to the code repository:
@@ -0,0 +1,10 @@
1
+ <!-- Feel free to remove any part of this pull request template that is not relevant -->
2
+
3
+ ## Description
4
+
5
+ <!-- What do your changes do or fix? -->
6
+
7
+ ## Additional Information
8
+
9
+ <!-- Links to demos, e.g. CodePen, can be helpful, as are research and support documents -->
10
+ <!-- If this fixes or is related to an existing issue, link to it here (and in the commit message) -->
data/.npmignore CHANGED
@@ -1,16 +1,21 @@
1
+ .circleci/
2
+ .github/
1
3
  .gitignore
2
4
  .hound.yml
5
+ .ruby-version
3
6
  .sass-cache
4
7
  .scss-lint.yml
5
8
  _site
6
9
  bin/
7
10
  bourbon.gemspec
8
11
  bower.json
12
+ CODE_OF_CONDUCT.md
13
+ CONTRIBUTING.md
9
14
  features/
10
15
  Gemfile
11
16
  Gemfile.lock
12
17
  lib/
13
18
  pkg/
14
19
  Rakefile
15
- sache.json
20
+ RELEASING.md
16
21
  spec/
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.4.3
data/.scss-lint.yml CHANGED
@@ -1,155 +1,247 @@
1
- scss_files: "app/assets/stylesheets/**/*.scss"
1
+ scss_files: "**/*.scss"
2
+
3
+ severity: warning
4
+
2
5
  linters:
3
6
  BangFormat:
4
7
  enabled: true
5
8
  space_before_bang: true
6
9
  space_after_bang: false
10
+
7
11
  BemDepth:
8
12
  enabled: false
13
+
9
14
  BorderZero:
10
15
  enabled: true
11
16
  convention: zero
17
+
18
+ ChainedClasses:
19
+ enabled: false
20
+
12
21
  ColorKeyword:
13
22
  enabled: true
23
+
14
24
  ColorVariable:
15
25
  enabled: false
26
+
16
27
  Comment:
17
28
  enabled: true
29
+ style: silent
30
+
18
31
  DebugStatement:
19
32
  enabled: true
33
+
20
34
  DeclarationOrder:
21
35
  enabled: true
36
+
22
37
  DisableLinterReason:
23
38
  enabled: false
39
+
24
40
  DuplicateProperty:
25
41
  enabled: true
42
+
26
43
  ElsePlacement:
27
44
  enabled: true
28
45
  style: same_line
46
+
29
47
  EmptyLineBetweenBlocks:
30
48
  enabled: true
31
49
  ignore_single_line_blocks: true
50
+
32
51
  EmptyRule:
33
52
  enabled: true
53
+
34
54
  ExtendDirective:
35
55
  enabled: false
56
+
36
57
  FinalNewline:
37
58
  enabled: true
38
59
  present: true
60
+
39
61
  HexLength:
40
62
  enabled: true
41
63
  style: short
64
+
42
65
  HexNotation:
43
66
  enabled: true
44
67
  style: lowercase
68
+
45
69
  HexValidation:
46
70
  enabled: true
71
+
47
72
  IdSelector:
48
73
  enabled: true
74
+
49
75
  ImportantRule:
50
76
  enabled: true
77
+
51
78
  ImportPath:
52
79
  enabled: true
53
80
  leading_underscore: false
54
81
  filename_extension: false
82
+
55
83
  Indentation:
56
84
  enabled: true
57
85
  allow_non_nested_indentation: false
58
86
  character: space
59
87
  width: 2
88
+
60
89
  LeadingZero:
61
90
  enabled: true
62
91
  style: include_zero
92
+
63
93
  MergeableSelector:
64
94
  enabled: true
65
95
  force_nesting: true
96
+
66
97
  NameFormat:
67
98
  enabled: true
68
99
  allow_leading_underscore: true
69
100
  convention: hyphenated_lowercase
101
+
70
102
  NestingDepth:
71
103
  enabled: true
72
104
  max_depth: 3
73
105
  ignore_parent_selectors: false
106
+
74
107
  PlaceholderInExtend:
75
108
  enabled: true
109
+
110
+ PrivateNamingConvention:
111
+ enabled: false
112
+ prefix: _
113
+
76
114
  PropertyCount:
77
115
  enabled: false
116
+
78
117
  PropertySortOrder:
79
118
  enabled: true
80
119
  ignore_unspecified: false
120
+ min_properties: 2
81
121
  separate_groups: false
122
+
82
123
  PropertySpelling:
83
124
  enabled: true
125
+ extra_properties: []
126
+ disabled_properties: []
127
+
84
128
  PropertyUnits:
85
129
  enabled: true
130
+ global: [
131
+ 'ch', 'em', 'ex', 'rem',
132
+ 'cm', 'in', 'mm', 'pc', 'pt', 'px', 'q',
133
+ 'vh', 'vw', 'vmin', 'vmax',
134
+ 'deg', 'grad', 'rad', 'turn',
135
+ 'ms', 's',
136
+ 'Hz', 'kHz',
137
+ 'dpi', 'dpcm', 'dppx',
138
+ '%']
86
139
  properties:
87
140
  line-height: []
141
+
142
+ PseudoElement:
143
+ enabled: true
144
+
88
145
  QualifyingElement:
89
146
  enabled: true
90
147
  allow_element_with_attribute: false
91
148
  allow_element_with_class: false
92
149
  allow_element_with_id: false
150
+
93
151
  SelectorDepth:
94
152
  enabled: true
95
153
  max_depth: 2
96
- severity: warning
154
+
97
155
  SelectorFormat:
98
- enabled: false
156
+ enabled: true
157
+ convention: hyphenated_BEM
158
+
99
159
  Shorthand:
100
160
  enabled: true
101
161
  allowed_shorthands: [1, 2, 3]
162
+
102
163
  SingleLinePerProperty:
103
164
  enabled: true
104
165
  allow_single_line_rule_sets: true
166
+
105
167
  SingleLinePerSelector:
106
168
  enabled: true
169
+
107
170
  SpaceAfterComma:
108
171
  enabled: true
109
172
  style: one_space
173
+
174
+ SpaceAfterComment:
175
+ enabled: false
176
+ allow_empty_comments: true
177
+
110
178
  SpaceAfterPropertyColon:
111
179
  enabled: true
112
180
  style: one_space
181
+
113
182
  SpaceAfterPropertyName:
114
183
  enabled: true
184
+
185
+ SpaceAfterVariableColon:
186
+ enabled: true
187
+ style: at_least_one_space
188
+
115
189
  SpaceAfterVariableName:
116
190
  enabled: true
191
+
117
192
  SpaceAroundOperator:
118
- enabled: false
193
+ enabled: true
194
+ style: one_space
195
+
119
196
  SpaceBeforeBrace:
120
197
  enabled: true
121
198
  style: space
122
- allow_single_line_padding: false
199
+ allow_single_line_padding: true
200
+
123
201
  SpaceBetweenParens:
124
202
  enabled: true
125
203
  spaces: 0
204
+
126
205
  StringQuotes:
127
206
  enabled: true
128
207
  style: double_quotes
208
+
129
209
  TrailingSemicolon:
130
210
  enabled: true
211
+
131
212
  TrailingWhitespace:
132
213
  enabled: true
214
+
133
215
  TrailingZero:
134
- enabled: false
216
+ enabled: true
217
+
135
218
  TransitionAll:
136
219
  enabled: true
137
- severity: warning
220
+
138
221
  UnnecessaryMantissa:
139
222
  enabled: true
223
+
140
224
  UnnecessaryParentReference:
141
225
  enabled: true
226
+
142
227
  UrlFormat:
143
228
  enabled: true
144
- severity: warning
229
+
145
230
  UrlQuotes:
146
231
  enabled: true
232
+
147
233
  VariableForProperty:
148
234
  enabled: false
235
+ properties: []
236
+
149
237
  VendorPrefix:
150
238
  enabled: true
151
239
  identifier_list: base
240
+ additional_identifiers: []
241
+ excluded_identifiers: []
242
+
152
243
  ZeroUnit:
153
244
  enabled: true
245
+
154
246
  Compass::*:
155
247
  enabled: false
data/.tool-versions ADDED
@@ -0,0 +1 @@
1
+ ruby 2.4.3