diff --git a/.eslintrc b/.eslintrc index 73595a0..339a9c9 100644 --- a/.eslintrc +++ b/.eslintrc @@ -10,5 +10,17 @@ "new-cap": [2, { "capIsNewExceptions": ["RequireObjectCoercible", "ToObject", "ToUint32", "IsCallable"] }], "no-magic-numbers": 0, "strict": 1 - } + }, + + "overrides": [ + { + "files": "test/**", + "rules": { + "func-name-matching": 0, + "max-lines-per-function": 0, + "max-params": [2, 3], + "no-invalid-this": 1, + }, + }, + ], } diff --git a/package.json b/package.json index d53f411..c3c3033 100644 --- a/package.json +++ b/package.json @@ -52,18 +52,18 @@ }, "devDependencies": { "@es-shims/api": "^2.1.2", - "@ljharb/eslint-config": "^13.1.1", + "@ljharb/eslint-config": "^14.1.0", "covert": "^1.1.1", - "eslint": "^5.16.0", - "evalmd": "^0.0.17", + "eslint": "^6.6.0", + "evalmd": "^0.0.19", "foreach": "^2.0.5", "function-bind": "^1.1.1", - "functions-have-names": "^1.1.0", + "functions-have-names": "^1.2.0", "has-strict-mode": "^1.0.0", "indexof": "^0.0.1", - "replace": "^1.1.0", - "safe-publish-latest": "^1.1.2", - "semver": "^6.2.0", + "replace": "^1.1.1", + "safe-publish-latest": "^1.1.3", + "semver": "^6.3.0", "tape": "^4.11.0" }, "testling": { diff --git a/test/.eslintrc b/test/.eslintrc deleted file mode 100644 index d39afc5..0000000 --- a/test/.eslintrc +++ /dev/null @@ -1,13 +0,0 @@ -{ - "rules": { - "array-bracket-newline": 0, - "func-name-matching": 0, - "max-lines-per-function": 0, - "max-nested-callbacks": [2, 4], - "max-params": [2, 3], - "no-invalid-this": [1], - "object-curly-newline": 0, - "sort-keys": 0, - "strict": 0 - } -}