File tree 7 files changed +8
-30
lines changed
7 files changed +8
-30
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "processors" : [
3
- [
4
- " stylelint-processor-styled-components" ,
5
- {
6
- "moduleName" : " @emotion/styled"
7
- }
8
- ]
9
- ],
2
+ "customSyntax" : " postcss-styled-syntax" ,
10
3
"extends" : [
11
- " stylelint-config-standard" ,
12
- " stylelint-config-styled-components" ,
13
- " stylelint-config-prettier"
4
+ " stylelint-config-standard"
14
5
],
15
6
"rules" : {
16
- "declaration-empty-line-before" : null ,
17
- "comment-empty-line-before" : null ,
18
7
"block-no-empty" : null ,
8
+ "comment-empty-line-before" : null ,
9
+ "declaration-empty-line-before" : null ,
10
+ "no-empty-source" : null ,
11
+ "declaration-block-no-redundant-longhand-properties" : null ,
19
12
"value-keyword-case" : null
20
13
}
21
14
}
Original file line number Diff line number Diff line change @@ -88,9 +88,9 @@ const Container = styled.div<ContainerProps>`
88
88
border-color: ${ colors . G200 } ;
89
89
}
90
90
` ;
91
- /* stylelint-disable block-no-empty */
91
+
92
92
const Content = styled . div `` ;
93
- /* stylelint-enable */
93
+
94
94
const size = 30 ;
95
95
96
96
const SelectionCount = styled . div `
Original file line number Diff line number Diff line change @@ -67,11 +67,8 @@ const ScrollContainer = styled.div`
67
67
max-height: ${ scrollContainerHeight } px;
68
68
` ;
69
69
70
- /* stylelint-disable block-no-empty */
71
70
const Container = styled . div `` ;
72
71
73
- /* stylelint-enable */
74
-
75
72
interface Props {
76
73
listId ?: string ;
77
74
listType ?: string ;
Original file line number Diff line number Diff line change @@ -239,13 +239,10 @@ const Header = styled.header`
239
239
margin-bottom: ${ grid * 2 } px;
240
240
` ;
241
241
242
- /* stylelint-disable block-no-empty */
243
242
const LayoutControl = styled . div `` ;
244
243
245
244
const CopyTableButton = styled . button `` ;
246
245
247
- /* stylelint-enable */
248
-
249
246
interface AppProps {
250
247
initial : Quote [ ] ;
251
248
}
Original file line number Diff line number Diff line change @@ -156,13 +156,10 @@ const Header = styled.header`
156
156
margin-bottom: ${ grid * 2 } px;
157
157
` ;
158
158
159
- /* stylelint-disable block-no-empty */
160
159
const LayoutControl = styled . div `` ;
161
160
162
161
const CopyTableButton = styled . button `` ;
163
162
164
- /* stylelint-enable */
165
-
166
163
interface AppProps {
167
164
initial : Quote [ ] ;
168
165
}
Original file line number Diff line number Diff line change @@ -81,13 +81,10 @@ const Header = styled.header`
81
81
margin-bottom: ${ grid * 2 } px;
82
82
` ;
83
83
84
- /* stylelint-disable block-no-empty */
85
84
const LayoutControl = styled . div `` ;
86
85
87
86
const CopyTableButton = styled . button `` ;
88
87
89
- /* stylelint-enable */
90
-
91
88
interface AppProps {
92
89
initial : Quote [ ] ;
93
90
}
Original file line number Diff line number Diff line change @@ -242,13 +242,10 @@ const Header = styled.header`
242
242
margin-bottom: ${ grid * 2 } px;
243
243
` ;
244
244
245
- /* stylelint-disable block-no-empty */
246
245
const LayoutControl = styled . div `` ;
247
246
248
247
const CopyTableButton = styled . button `` ;
249
248
250
- /* stylelint-enable */
251
-
252
249
interface AppProps {
253
250
initial : Quote [ ] ;
254
251
}
You can’t perform that action at this time.
0 commit comments