Commit 48ab42b360b35083167c5d95bea1d859cf6ecab7

Michael Schmidt 2021-04-03T12:47:16

ESLint: Added `root` to config to prevent warning (#2846)

1
2
3
4
5
6
7
8
9
10
11
diff --git a/.eslintrc.js b/.eslintrc.js
index c5b2c2a..0f868d9 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -1,5 +1,6 @@
 /** @type {import('eslint').Linter.Config} */
 module.exports = {
+	root: true,
 	extends: 'eslint:recommended',
 	rules: {
 		// I turned this rule off because we use `hasOwnProperty` in a lot of places