Skip to content

Commit 9170fe7

Browse files
committed
fix: missing suggestions #34
1 parent d62d96d commit 9170fe7

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

.eslintrc.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,10 @@
1717
"quotes": [2, "single"],
1818
"comma-spacing": 2,
1919
"indent": [2, 2],
20-
"no-console": 1,
2120
"no-constant-condition": 2,
22-
"no-case-declarations": 1,
21+
"no-case-declarations": 0,
22+
"@typescript-eslint/no-unused-vars": 0,
2323
"@typescript-eslint/no-var-requires": 0,
24-
"@typescript-eslint/no-unused-vars": "warn",
2524
"@typescript-eslint/no-explicit-any": "off",
2625
"@typescript-eslint/explicit-module-boundary-types": 0,
2726
"comma-dangle": [2, "always-multiline"],

src/utils/utilities.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ const utilities: { [key:string]: string[]} = {
5151
'flex-${static}',
5252
],
5353
flexGrow: [
54-
'flex-${static}',
54+
'flex-grow-${static}',
5555
],
5656
flexShrink: [
57-
'flex-${static}',
57+
'flex-shrink-${static}',
5858
],
5959
order: [
6060
'order-${static}',
@@ -482,4 +482,4 @@ const negative: { [key:string]: true} = {
482482
skew: true,
483483
};
484484

485-
export { utilities, negative };
485+
export { utilities, negative };

0 commit comments

Comments
 (0)