Skip to content

Commit

Permalink
fix: fixed numeric separator (closes #31)
Browse files Browse the repository at this point in the history
  • Loading branch information
niftylettuce committed May 18, 2021
1 parent 334eaec commit b8ea2cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class I18N {
// Disable signed cookies in NODE_ENV=test
signed: process.env.NODE_ENV !== 'test'
},
expiryMs: 31_556_952_000, // one year in ms
expiryMs: 31556952000, // one year in ms
indent: ' ',
defaultLocale: 'en',
syncFiles: boolean(process.env.I18N_SYNC_FILES || true),
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@
],
"rules": {
"unicorn/prevent-abbreviations": "off",
"unicorn/prefer-module": "off"
"unicorn/prefer-module": "off",
"unicorn/numeric-separators-style": "off"
}
}
}

0 comments on commit b8ea2cf

Please sign in to comment.