This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"order": [ | |
"at-rules", | |
{ | |
"type": "at-rule", | |
"name": "charset" | |
}, | |
{ | |
"type": "at-rule", | |
"name": "import" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
plugins: ['stylelint-order', 'stylelint-scss'], | |
rules: { | |
indentation: 2, | |
'color-hex-case': 'lower', // hex値は小文字指定(大文字を禁止) | |
'color-hex-length': 'short', // hex値は短い表記(冗長な表記は禁止) | |
'color-named': 'never', // 名前付きカラー指定を禁止 | |
'color-no-invalid-hex': true, // 無効な16進数の色指定を禁止 | |
'function-comma-space-after': 'always-single-line', // 単一行のカンマ後には空白が必要 | |
'function-comma-space-before': 'never', // カンマ前の空白を禁止 |