Skip to content

Commit

Permalink
chore: Update linting rules.
Browse files Browse the repository at this point in the history
  • Loading branch information
darkobits committed Jul 8, 2023
1 parent 27c793f commit 0ddfef8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ export default [
{
rules: {
'no-console': 'off',
'unicorn/no-process-exit': 'off'
'require-atomic-updates': 'off',
'unicorn/no-process-exit': 'off',
// TODO: Disable this rule in eslint-plugin.
'@typescript-eslint/prefer-nullish-coalescing': 'off'
}
}
];

0 comments on commit 0ddfef8

Please sign in to comment.