Skip to content

Commit

Permalink
fix(eslint-config): allow time magic numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
andrepolischuk committed Jan 24, 2024
1 parent 77355e8 commit bdfc1c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-config/js.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ module.exports = {
'no-magic-numbers': [
'error',
{
ignore: [0, 1, 2],
ignore: [0, 1, -1, 2, 24, 60, 1000],
enforceConst: true,
ignoreDefaultValues: true,
ignoreClassFieldInitialValues: true
Expand Down

0 comments on commit bdfc1c9

Please sign in to comment.