Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vitest-dev/eslint-plugin-vitest
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.26
Choose a base ref
...
head repository: vitest-dev/eslint-plugin-vitest
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.4.0
Choose a head ref
  • 4 commits
  • 18 files changed
  • 2 contributors

Commits on Mar 13, 2024

  1. chore(update deps): update dependancies (#396)

    veritem authored Mar 13, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    975c983 View commit details

Commits on Mar 25, 2024

  1. fix: support ESLint v9 getScope() (#399)

    antfu authored Mar 25, 2024
    Copy the full SHA
    bbe0130 View commit details
  2. Feat/support eslint 9 (#400)

    * feat(update): fight with tsc
    
    * feat(sugg): update fixes
    
    * chore(cleanup): cleaned up rules
    veritem authored Mar 25, 2024
    Copy the full SHA
    4079285 View commit details
  3. chore: release v0.4.0

    veritem committed Mar 25, 2024
    Copy the full SHA
    9b612a1 View commit details
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -134,7 +134,7 @@ If you're using this feature, you should also enabled `typecheck` in the setting
🌐 Set in the `all` configuration.\
✅ Set in the `recommended` configuration.\
🔧 Automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/user-guide/command-line-interface#--fix).\
💡 Manually fixable by [editor suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).\
💡 Manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).\
❌ Deprecated.

| Name                                                | Description | 💼 | ⚠️ | 🔧 | 💡 ||
2 changes: 1 addition & 1 deletion docs/rules/no-done-callback.md
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@

⚠️ This rule _warns_ in the 🌐 `all` config.

💡 This rule is manually fixable by [editor suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
💡 This rule is manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).

<!-- end auto-generated rule header -->

2 changes: 1 addition & 1 deletion docs/rules/prefer-equality-matcher.md
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

⚠️ This rule _warns_ in the 🌐 `all` config.

💡 This rule is manually fixable by [editor suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
💡 This rule is manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).

<!-- end auto-generated rule header -->

2 changes: 1 addition & 1 deletion docs/rules/prefer-expect-assertions.md
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

⚠️ This rule _warns_ in the 🌐 `all` config.

💡 This rule is manually fixable by [editor suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
💡 This rule is manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).

<!-- end auto-generated rule header -->

2 changes: 1 addition & 1 deletion docs/rules/prefer-strict-equal.md
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

⚠️ This rule _warns_ in the 🌐 `all` config.

💡 This rule is manually fixable by [editor suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
💡 This rule is manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).

<!-- end auto-generated rule header -->

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-vitest",
"version": "0.3.26",
"version": "0.4.0",
"license": "MIT",
"description": "Eslint plugin for vitest",
"repository": "veritem/eslint-plugin-vitest",
@@ -42,17 +42,17 @@
"devDependencies": {
"@babel/types": "^7.24.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/rule-tester": "^7.1.1",
"@types/node": "^20.11.26",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/rule-tester": "^7.2.0",
"@veritem/eslint-config": "^0.0.11",
"bumpp": "^9.4.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-doc-generator": "^1.7.0",
"eslint-plugin-eslint-plugin": "^5.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-vitest": "^0.3.24",
"eslint-plugin-vitest": "^0.3.26",
"eslint-remote-tester": "^3.0.1",
"eslint-remote-tester-repositories": "^1.0.1",
"ts-node": "^10.9.2",
@@ -77,6 +77,6 @@
}
},
"dependencies": {
"@typescript-eslint/utils": "^7.1.1"
"@typescript-eslint/utils": "^7.2.0"
}
}
Loading