aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/.eslintrc.cjs
blob: 25fd2527d7a0fdce670864d1948cba722231a943 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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,
      },
    },
  ],
};