Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.
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: eslint-types/eslint-define-config
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.8.0
Choose a base ref
...
head repository: eslint-types/eslint-define-config
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.9.0
Choose a head ref
  • 4 commits
  • 5 files changed
  • 2 contributors

Commits on Oct 27, 2022

  1. Copy the full SHA
    00a0647 View commit details

Commits on Oct 29, 2022

  1. Copy the full SHA
    614bb00 View commit details
  2. Update Changelog

    Shinigami92 committed Oct 29, 2022
    Copy the full SHA
    748fa58 View commit details
  3. v1.9.0

    Shinigami92 committed Oct 29, 2022
    Copy the full SHA
    2f263e1 View commit details
Showing with 133 additions and 109 deletions.
  1. +9 −1 CHANGELOG.md
  2. +11 −11 package.json
  3. +99 −95 pnpm-lock.yaml
  4. +12 −0 src/flat-config/index.d.ts
  5. +2 −2 src/index.d.ts
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Next

[diff](https://github.com/Shinigami92/eslint-define-config/compare/1.8.0...main)
[diff](https://github.com/Shinigami92/eslint-define-config/compare/1.9.0...main)

# 1.9.0

[diff](https://github.com/Shinigami92/eslint-define-config/compare/1.8.0...1.9.0)

- Add `PredefinedConfig` for Flat ESLint Config ([#146])

[#146]: https://github.com/Shinigami92/eslint-define-config/pull/146

# 1.8.0

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-define-config",
"version": "1.8.0",
"version": "1.9.0",
"description": "Provide a defineConfig function for .eslintrc.js files",
"main": "src/index.js",
"module": "src/index.mjs",
@@ -51,20 +51,20 @@
],
"devDependencies": {
"@intlify/eslint-plugin-vue-i18n": "~2.0.0",
"@poppinss/cliui": "~3.0.4",
"@types/eslint": "~8.4.7",
"@poppinss/cliui": "~3.0.5",
"@types/eslint": "~8.4.9",
"@types/json-schema": "~7.0.11",
"@types/node": "~18.11.3",
"@types/node": "~18.11.7",
"@types/prettier": "~2.7.1",
"@typescript-eslint/eslint-plugin": "~5.40.1",
"@typescript-eslint/parser": "~5.40.1",
"@typescript-eslint/eslint-plugin": "~5.41.0",
"@typescript-eslint/parser": "~5.41.0",
"change-case": "~4.1.2",
"eslint": "~8.26.0",
"eslint-config-prettier": "~8.5.0",
"eslint-gitignore": "~0.1.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-inclusive-language": "~2.2.0",
"eslint-plugin-jsdoc": "~39.3.20",
"eslint-plugin-jsdoc": "~39.3.25",
"eslint-plugin-mdx": "~2.0.5",
"eslint-plugin-n": "~15.3.0",
"eslint-plugin-node": "~11.1.0",
@@ -78,16 +78,16 @@
"prettier": "2.7.1",
"prettier-plugin-organize-imports": "~3.1.1",
"ts-dedent": "~2.2.0",
"tsx": "~3.10.4",
"tsx": "~3.11.0",
"typescript": "~4.8.4",
"upper-case-first": "~2.0.2",
"vitest": "~0.24.3",
"vue-eslint-parser": "~9.1.0"
},
"packageManager": "pnpm@7.14.0",
"packageManager": "pnpm@7.14.1",
"engines": {
"node": ">= 14.6.0",
"npm": ">= 6.0.0",
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
"npm": ">=6.14.13",
"pnpm": ">= 7.0.0"
}
}
Loading