Skip to content

Commit

Permalink
eslint tsc config fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathertel committed Jun 20, 2024
1 parent 1f0c896 commit 93922b4
Show file tree
Hide file tree
Showing 9 changed files with 311 additions and 271 deletions.
13 changes: 7 additions & 6 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import tseslint from "typescript-eslint";


export default [
pluginJs.configs.recommended,
...tseslint.configs.recommended,
{
plugins: {
},
Expand Down Expand Up @@ -38,17 +40,16 @@ export default [
"space-before-function-paren": 0,
"padded-blocks": 0,
"no-empty": 0,
"no-unused-expressions": 0,
"@typescript-eslint/triple-slash-reference": 0,
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"@typescript-eslint/no-explicit-any": ["error", { "fixToUnknown": true }],
"no-unused-expressions": "off" ,
"@typescript-eslint/triple-slash-reference": 0,
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-unused-expressions": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-comment": 0,
"@typescript-eslint/no-unsafe-declaration-merging": 0,
},

},

pluginJs.configs.recommended,
...tseslint.configs.recommended,

];
2 changes: 1 addition & 1 deletion micro-mini.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion micro.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 93922b4

Please sign in to comment.