Skip to content

Commit

Permalink
Merge branch 'eslint8' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
codejedi365 committed Oct 30, 2021
2 parents 78e9049 + d8b836c commit 6df94fa
Show file tree
Hide file tree
Showing 8 changed files with 649 additions and 26 deletions.
1 change: 0 additions & 1 deletion lib/rules/expect-expect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export default createRule({
},
docs: {
description: "Ensure tests have at least one expect",
category: "Best Practices",
recommended: "error"
},
schema: []
Expand Down
1 change: 0 additions & 1 deletion lib/rules/no-debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export default createRule({
docs: {
description:
"Don't allow `t.debug()` to be committed to the repository. ",
category: "Best Practices",
recommended: "error"
},
schema: []
Expand Down
1 change: 0 additions & 1 deletion lib/rules/no-identical-title.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ export default createRule({
},
docs: {
description: "Don't use identical titles for your tests",
category: "Best Practices",
recommended: "error"
},
schema: []
Expand Down
1 change: 0 additions & 1 deletion lib/rules/no-only.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export default createRule({
docs: {
description:
"Don't allow `test.only` to be added to the repository",
category: "Best Practices",
recommended: "error"
},
schema: []
Expand Down
3 changes: 1 addition & 2 deletions lib/rules/no-skip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@ export default createRule({
messages: {
noSkip: "Do not use the `.skip` hook."
},
type: "suggestion",
type: "problem",
docs: {
description:
"Don't allow `test.skip` or `fixture.skip` to be added to the repository",
category: "Best Practices",
recommended: "warn"
},
schema: []
Expand Down
658 changes: 643 additions & 15 deletions package-lock.json

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"author": "Ben Monro <ben.monro@gmail.com>",
"contributors": [
"Mikhail Losev <miherlosev@mail.ru>",
"codejedi365 <codejedi365@gmail.com>"
"codejedi365 <codejedi365@gmail.com>",
"Matthias Klass <matthias.klass@tngtech.com>"
],
"license": "MIT",
"bugs": {
Expand Down Expand Up @@ -51,7 +52,7 @@
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"@typescript-eslint/types": "^4.32.0",
"@typescript-eslint/types": "^5.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
Expand Down Expand Up @@ -79,10 +80,10 @@
"typescript": "^4.4.3"
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^4.32.0"
"@typescript-eslint/experimental-utils": "^5.2.0"
},
"peerDependencies": {
"eslint": "^7.0.0"
"eslint": "^7.0.0 || ^8.0.0"
},
"engines": {
"node": ">=10.24"
Expand Down
1 change: 0 additions & 1 deletion tests/lib/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ describe("Rule Definitions", () => {
const rule = rulebook.rules[ruleName];
expect(rule).toHaveProperty("create", expect.any(Function));
expect(rule.meta.docs?.url).not.toBeEmpty();
expect(rule.meta.docs?.category).toBe("Best Practices");
expect(rule.meta.docs?.description).not.toBeEmpty();
}
);
Expand Down

0 comments on commit 6df94fa

Please sign in to comment.