aboutsummaryrefslogtreecommitdiff
path: root/eslint.config.js
blob: d66512c002c3689776729da5c618dd82b6667fe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import hapi from '@hapi/eslint-plugin';

export default [{
  languageOptions: {
    globals: {
      document: true,
      window: true,
      console: true
    }
  },
  plugins: {
    hapi
  },
  rules: {
    indent: [
      2,
      2
    ],
    'no-undef': 2
  }
}];