]> git.r.bdr.sh - rbdr/lissajous/blob - eslint.config.js
Make 3D
[rbdr/lissajous] / eslint.config.js
1 import hapi from '@hapi/eslint-plugin';
2
3 export default [{
4 languageOptions: {
5 globals: {
6 document: true,
7 window: true,
8 console: true
9 }
10 },
11 plugins: {
12 hapi
13 },
14 rules: {
15 indent: [
16 2,
17 2
18 ],
19 'no-undef': 2
20 }
21 }];