Skip to content

Commit 5fe61c1

Browse files
committed
feat(config/eslint): disable 'import/consistent-type-specifier-style' rule
1 parent 7e87380 commit 5fe61c1

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@
111111
"no-console": "off",
112112
"no-nested-ternary": "off",
113113
"no-useless-catch": "off",
114-
"jest/prefer-snapshot-hint": "off"
114+
"jest/prefer-snapshot-hint": "off",
115+
"import/consistent-type-specifier-style": "off"
115116
}
116117
},
117118
"eslintIgnore": [

src/config/__tests__/__snapshots__/eslintrc.js.snap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ Object {
6767
"@typescript-eslint/no-throw-literal": "off",
6868
"@typescript-eslint/return-await": "off",
6969
"class-methods-use-this": "off",
70+
"import/consistent-type-specifier-style": "off",
7071
"import/no-extraneous-dependencies": Array [
7172
"error",
7273
Object {
@@ -200,6 +201,7 @@ Object {
200201
"@typescript-eslint/no-throw-literal": "off",
201202
"@typescript-eslint/return-await": "off",
202203
"class-methods-use-this": "off",
204+
"import/consistent-type-specifier-style": "off",
203205
"import/no-extraneous-dependencies": Array [
204206
"error",
205207
Object {

src/config/helpers/build-eslint.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ const buildConfig = ({withReact = false} = {}) => {
5353
rules: {
5454
'class-methods-use-this': 'off',
5555
'import/prefer-default-export': 'off',
56+
'import/consistent-type-specifier-style': 'off',
5657
'import/no-extraneous-dependencies': [
5758
'error',
5859
{

0 commit comments

Comments
 (0)