Skip to content

Instantly share code, notes, and snippets.

@buchiya4th
buchiya4th / stylelint.config.js
Last active February 15, 2024 21:29
stylelintの設定ファイル
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', // カンマ前の空白を禁止
@buchiya4th
buchiya4th / postcss-sorting.json
Last active March 25, 2019 13:01
postcss-sortingの設定ファイル
{
"order": [
"at-rules",
{
"type": "at-rule",
"name": "charset"
},
{
"type": "at-rule",
"name": "import"