-
Notifications
You must be signed in to change notification settings - Fork 0
/
.sass-lint.yml
181 lines (181 loc) · 3.7 KB
/
.sass-lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
rules:
# インデント
indentation:
- 0
-
size: tab
# 引用符
quotes:
- 2
# 設定: single / double (default: single)
- style: double
# 最終行は空行
final-newline:
- 2
# @importのパス設定
clean-import-paths:
- 2
# ファイル名の先頭に_を許可する: true / false (default: false)
- leading-underscore: true
# 拡張子を付ける: true / false (default: false)
- filename-extension: false
# CSSコメントを不許可
no-css-comments:
- 0
# IDを不許可
no-ids:
- 1
# ネストの深さ
nesting-depth:
- 1
- max-depth: 3
# ルールセットが空
no-empty-rulesets:
- 1
# クラス名のフォーマット
class-name-format:
- 2
-
convention: hyphenatedbem
# プロパティの並び順
property-sort-order:
- 2
-
order:
- content
- display
- flex-direction
- justify-content
- align-items
- flex-wrap
- flex-basis
- position
- top
- right
- bottom
- left
- float
- clear
- box-sizing
- background
- background-color
- background-image
- background-size
- margin
- margin-top
- margin-right
- margin-bottom
- margin-left
- padding
- padding-top
- padding-right
- padding-bottom
- padding-left
- border
- border-top
- border-right
- border-bottom
- border-left
- border-radius
- outline
- width
- min-width
- max-width
- height
- min-height
- max-height
- font-family
- -webkit-font-smoothing
- -moz-osx-font-smoothing
- font-size
- font-weight
- line-height
- text-align
- text-decoration
- color
- vertical-align
- overflow
- visibility
- opacity
- z-index
# 特定のプロパティを禁止
no-disallowed-properties:
- 2
-
properties:
- font
# 宣言の前のネストを不許可
declarations-before-nesting: 2
# ブロックの間に空行
empty-line-between-blocks:
- 2
-
include: true
# 1行のルールセットを許可
allow-single-line-rulesets: false
# ベンダープレフィックスを不許可
no-vendor-prefixes:
- 1
# 疑似要素はダブルコロン、疑似クラスはシングルコロン
pseudo-element:
- 2
# 疑似要素はネスト
force-pseudo-nesting:
- 1
# 重複するプロパティを不許可
no-duplicate-properties:
- 2
-
exclude:
- font-size
# ショートハンドの値
shorthand-values: 2
# 値0の単位
zero-unit:
- 2
# 小数点の整数桁に0を許可
leading-zero:
- 2
-
include: true
# borderの値
border-zero: 2
# 16進数の長さ
hex-length:
- 2
-
style: long
# 16進数のフォーマット
hex-notation:
- 2
-
style: lowercase
# カラーリテラルを不許可
no-color-literals:
- 0
# カラーキーワードを不許可
no-color-keywords:
- 2
# URL引用符
url-quotes:
- 0
# 変数名のフォーマット
variable-name-format:
- 2
-
allow-leading-underscore: false
convention: camelcase
# mixin名のフォーマット
mixin-name-format:
- 2
-
convention: camelcase
# 宣言前のmixin
mixins-before-declarations:
- 0
# function名のフォーマット
function-name-format:
- 2
-
allow-leading-underscore: false
convention: camelcase