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: vuejs/create-eslint-config
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.9.1
Choose a base ref
...
head repository: vuejs/create-eslint-config
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.10.0
Choose a head ref
  • 6 commits
  • 5 files changed
  • 2 contributors

Commits on Mar 13, 2025

  1. chore(deps): update all non-major dependencies (#57)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 13, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    primeos Michael Weiss
    Copy the full SHA
    30af737 View commit details
  2. chore(deps): update oxlint to ^0.15.15 (#58)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 13, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e23389e View commit details
  3. Copy the full SHA
    022afe3 View commit details
  4. Copy the full SHA
    57fb33e View commit details
  5. Copy the full SHA
    f03fec0 View commit details
  6. 0.10.0

    haoqunjiang committed Mar 13, 2025
    Copy the full SHA
    b979c50 View commit details
Showing with 141 additions and 142 deletions.
  1. +2 −2 index.js
  2. +6 −6 package.json
  3. +126 −123 pnpm-lock.yaml
  4. +5 −7 templates/eslint.config.js.ejs
  5. +2 −4 templates/eslint.config.ts.ejs
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -47,8 +47,8 @@ export default function createConfig({
]),
afterVuePlugin: [
{
importer: "import oxlint from 'eslint-plugin-oxlint'",
content: "...oxlint.configs['flat/recommended'],",
importer: "import pluginOxlint from 'eslint-plugin-oxlint'",
content: "...pluginOxlint.configs['flat/recommended'],",
},
],
})
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/create-eslint-config",
"version": "0.9.1",
"version": "0.10.0",
"description": "Utility to setup ESLint in Vue.js projects.",
"type": "module",
"main": "index.js",
@@ -39,17 +39,17 @@
"kolorist": "^1.8.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/node": "^22.13.9",
"@eslint/js": "^9.22.0",
"@types/node": "^22.13.10",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.5.0",
"eslint": "^9.21.0",
"eslint-plugin-oxlint": "^0.15.13",
"eslint": "^9.22.0",
"eslint-plugin-oxlint": "^0.15.15",
"eslint-plugin-vue": "~10.0.0",
"globals": "^16.0.0",
"jiti": "^2.4.2",
"npm-run-all2": "^7.0.2",
"oxlint": "^0.15.13",
"oxlint": "^0.15.15",
"prettier": "3.5.3",
"typescript": "~5.8.2"
}
Loading