aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/.eslintrc.cjs
blob: cab227ce82fe04cc6ba4308aa83d5ec037b72e39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module.exports = {
  env: {
    node: true,
    browser: false,
  },
  rules: {
    // This is an application, so we're allowed to `exit` from it.
    'unicorn/no-process-exit': 'off',
  },
};