Skip to content

Commit 371f6a5

Browse files
committed
fix: eslint errors
1 parent b23cfe0 commit 371f6a5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.eslintrc.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = {
1616
plugins: ['@typescript-eslint', 'import'],
1717
extends: [
1818
'eslint-config-airbnb-base',
19-
'plugin:@typescript-eslint/recommended'
19+
'plugin:@typescript-eslint/recommended',
2020
],
2121
rules: {
2222
'no-nested-ternary': [0],
@@ -26,18 +26,18 @@ module.exports = {
2626
'import/no-extraneous-dependencies': [0],
2727
'consistent-return': [0],
2828
'no-bitwise': [0],
29-
'prefer-destructuring': [2, { 'array': false }],
30-
'import/extensions': [2, 'ignorePackages', { ts: 'never' }],
29+
'prefer-destructuring': [2, { array: false }],
30+
'import/extensions': [0],
3131
'@typescript-eslint/ban-ts-comment': [0],
3232
'@typescript-eslint/explicit-module-boundary-types': [0],
3333
'@typescript-eslint/no-explicit-any': [0],
34-
'@typescript-eslint/no-non-null-assertion': [0]
34+
'@typescript-eslint/no-non-null-assertion': [0],
3535
},
3636
settings: {
3737
'import/resolver': {
3838
node: {
39-
extensions: ['.js', '.jsx', '.ts', '.tsx']
40-
}
41-
}
42-
}
39+
extensions: ['.js', '.jsx', '.ts', '.tsx'],
40+
},
41+
},
42+
},
4343
};

0 commit comments

Comments
 (0)