aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
new file mode 100644
index 0000000..d9be6f9
--- /dev/null
+++ b/.eslintrc.js
@@ -0,0 +1,15 @@
1module.exports = {
2 root: true,
3 parserOptions: {
4 ecmaVersion: 12,
5 sourceType: 'module',
6 },
7 env: {
8 browser: true,
9 es2021: true,
10 node: true,
11 jquery: true,
12 },
13 extends: ['eslint:recommended'],
14 rules: {},
15};