Skip to content

Commit 4ae5556

Browse files
committed
fix: removes xml tags
1 parent 72c53f5 commit 4ae5556

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.eslintrc.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = {
1313
settings: {
1414
'import/resolver': {
1515
node: {
16-
extensions: ['.js', '.jsx', '.ts', '.tsx'],
16+
extensions: ['.js', '.ts'],
1717
},
1818
typescript: {}, // This loads <rootdir>/tsconfig.json to eslint
1919
},
@@ -59,15 +59,13 @@ module.exports = {
5959
'ignorePackages',
6060
{
6161
js: 'never',
62-
jsx: 'never',
6362
ts: 'never',
64-
tsx: 'never',
6563
},
6664
],
6765
},
6866
overrides: [
6967
{
70-
files: ['*.ts', '*.tsx'],
68+
files: ['*.ts'],
7169
parserOptions: {
7270
project: ['./tsconfig.json'], // Specify it only for TypeScript files
7371
},

0 commit comments

Comments
 (0)