Skip to content

Commit 2ab5e09

Browse files
committed
fix(minimatch-vulns): fixed minimatch vulns and update devDeps
1 parent 8d20032 commit 2ab5e09

7 files changed

Lines changed: 793 additions & 1065 deletions

File tree

.eslintrc.js

Lines changed: 0 additions & 35 deletions
This file was deleted.

eslint.config.mjs

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
import { defineConfig } from 'eslint/config';
2+
import tseslint from 'typescript-eslint';
3+
import eslintConfigInternxt from '@internxt/eslint-config-internxt';
4+
5+
export default defineConfig(
6+
{
7+
ignores: ['dist/**', 'node_modules/**', 'coverage/**'],
8+
},
9+
eslintConfigInternxt,
10+
{
11+
languageOptions: {
12+
parser: tseslint.parser,
13+
parserOptions: {
14+
project: 'tsconfig.json',
15+
tsconfigRootDir: import.meta.dirname,
16+
sourceType: 'module',
17+
},
18+
globals: {
19+
node: true,
20+
jest: true,
21+
},
22+
},
23+
rules: {
24+
'@typescript-eslint/no-unused-vars': [
25+
'warn',
26+
{ argsIgnorePattern: '^_', varsIgnorePattern: '^_' },
27+
],
28+
'@typescript-eslint/interface-name-prefix': 'off',
29+
'@typescript-eslint/explicit-function-return-type': 'off',
30+
'@typescript-eslint/explicit-module-boundary-types': 'off',
31+
'@typescript-eslint/no-explicit-any': 'off',
32+
'@typescript-eslint/prefer-readonly': 'warn',
33+
'@typescript-eslint/prefer-optional-chain': 'warn',
34+
'@typescript-eslint/consistent-type-imports': [
35+
'warn',
36+
{ prefer: 'type-imports', fixStyle: 'inline-type-imports' },
37+
],
38+
'max-len': 'off',
39+
'no-console': 'off',
40+
},
41+
},
42+
);
43+

0 commit comments

Comments
 (0)