前提・実現したいこと、発生している問題
SCSSでCSSCOMB自動整列を使っています。
順序に関して、どうしてもわからないことがあります。
並びとして、&系を@系より先に持ってきたいですが、
sass
1*** { 2 ... 3 & 4 @include respond(**) {} //@mediaなど 5}
実際には以下のようになってしまします。
sass
1*** { 2 ... 3 @include respond(**) {} 4 & 5}
該当のソースコード
json
1 2{ 3 "exclude": [ 4 ".git/**", 5 "node_modules/**", 6 "bower_components/**" 7 ], 8 "remove-empty-rulesets": true, 9 "always-semicolon": true, 10 "color-case": "lower", 11 "block-indent": " ", 12 "color-shorthand": true, 13 "element-case": "lower", 14 "eof-newline": false, 15 "leading-zero": false, 16 "quotes": "single", 17 "sort-order-fallback": "abc", 18 "space-before-colon": "", 19 "space-after-colon": " ", 20 "space-before-combinator": " ", 21 "space-after-combinator": " ", 22 "space-between-declarations": "\n", 23 "space-before-opening-brace": " ", 24 "space-after-opening-brace": "\n", 25 "space-after-selector-delimiter": "\n", 26 "space-before-selector-delimiter": "", 27 "space-before-closing-brace": "\n", 28 "strip-spaces": true, 29 "tab-size": true, 30 "sort-order": [ 31 [ 32 "font", 33 "font-family", 34 "font-feature-settings", 35 "font-size", 36 "font-weight", 37 "font-style", 38 "font-variant", 39 "font-size-adjust", 40 "font-stretch", 41 "font-effect", 42 "font-emphasize", 43 "font-emphasize-position", 44 "font-emphasize-style", 45 "font-smooth", 46 "line-height"...続く 47 //ここに足すのかなと思ったけど違った 48 ] 49 ] 50}
追記:
以下のソースをみつけましたがこれでは解決できませんでした。
https://github.com/csscomb/csscomb.js/issues/605
あなたの回答
tips
プレビュー