summaryrefslogtreecommitdiff
path: root/.eslintrc.json
diff options
context:
space:
mode:
authorJustin Wernick <justin@worthe-it.co.za>2023-06-06 23:06:11 +0200
committerJustin Wernick <justin@worthe-it.co.za>2023-06-06 23:06:11 +0200
commit9f10668a88df2255fc1494c38846a09a9c516b64 (patch)
tree1dae64d65fb6989128039b26d2f180666cabeafd /.eslintrc.json
parente0b1e3df773c8b60d523a8feac6f7242e0f70d88 (diff)
Switched jshint to eslint
This happened to find an error in the one test. Oops. Fix #8
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json14
1 files changed, 14 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
new file mode 100644
index 0000000..dfb64d0
--- /dev/null
+++ b/.eslintrc.json
@@ -0,0 +1,14 @@
+{
+ "env": {
+ "browser": true,
+ "commonjs": true,
+ "es2021": true,
+ "amd": true
+ },
+ "extends": "eslint:recommended",
+ "parserOptions": {
+ "ecmaVersion": "latest"
+ },
+ "rules": {
+ }
+}