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 } }];