Skip to content

Commit

Permalink
chore(eslint): Disable no-explicit-any
Browse files Browse the repository at this point in the history
  • Loading branch information
byakuren-hijiri committed May 11, 2024
1 parent 4511848 commit 318a2ec
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ module.exports = {
],
rules: {
"@typescript-eslint/switch-exhaustiveness-check": "error",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
Expand Down
1 change: 0 additions & 1 deletion src/internals/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ export class DebugLogger extends Logger {
}
}

// eslint-disable-next-line @typescript-eslint/no-explicit-any
function trace(...args: any) {
console.log(...args);
console.trace();
Expand Down

0 comments on commit 318a2ec

Please sign in to comment.