aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-02-22 12:07:09 -0500
committerGitHub <noreply@github.com>2020-02-22 12:07:09 -0500
commit0e31139734efd51799efcb6357c074059c78858d (patch)
tree87604c886aa8bfcdd1787809d6a20e3f2057597f /.eslintrc.json
parent174d9e7429a0f7a45538e56a594ce627239d80c3 (diff)
parent1e573f36c416b3955b2e679c8f3ce7ffa91bf504 (diff)
Merge pull request #371 from toasted-nutbread/database-tests
Database tests
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json10
1 files changed, 7 insertions, 3 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index a350bce4..9b0754fc 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -72,11 +72,15 @@
},
{
"files": ["test/**/*.js"],
+ "parserOptions": {
+ "ecmaVersion": 8,
+ "sourceType": "module"
+ },
"env": {
"browser": false,
- "es2017": false,
- "webextensions": false,
- "node": true
+ "es2017": true,
+ "node": true,
+ "webextensions": false
}
}
]