Skip to content

Commit

Permalink
chore: change ESLint config.
Browse files Browse the repository at this point in the history
  • Loading branch information
asafkorem committed Jan 20, 2025
1 parent 3bf489f commit f417eaf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ module.exports = {
},
rules: {
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
'no-console': ['warn', { allow: ['warn', 'error'] }],
'no-console': 'off',
},
ignorePatterns: ['dist/', 'node_modules/', '*.js'],
};
};

0 comments on commit f417eaf

Please sign in to comment.