aboutsummaryrefslogtreecommitdiffstats
path: root/packages/service-shared/.eslintrc.cjs
blob: c19829da693d02deff11410e1515f1d229f66f56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module.exports = {
  env: {
    // We must run in both node and browser, so we can't depend on either of them.
    node: false,
    browser: false,
  },
  overrides: [
    {
      files: [
        '.eslintrc.cjs',
        'esbuild.config.js',
      ],
      env: {
        node: true,
      },
    },
  ],
};