@lntvow/eslint-config 9.30.0 → 9.30.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -6
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -41,12 +41,15 @@ export default lntvow()
41
41
 
42
42
  Since flat config requires us to explicitly provide the plugin names (instead of the mandatory convention from npm package name), we renamed some plugins to make the overall scope more consistent and easier to write.
43
43
 
44
- | New Prefix | Original Prefix | Source Plugin |
45
- | ---------- | ---------------------- | ------------------------------------------------------------------------------------------ |
46
- | `ts/*` | `@typescript-eslint/*` | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint) |
47
- | `vue/*` | `vue/*` | [eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue) |
48
- | `import/*` | `import-x/*` | [eslint-plugin-import-x](https://github.com/un-es/eslint-plugin-import-x) |
49
- | `style/*` | `@stylistic/*` | [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic) |
44
+ | New Prefix | Original Prefix | Source Plugin |
45
+ | ----------- | ---------------------- | ------------------------------------------------------------------------------------------ |
46
+ | `ts/*` | `@typescript-eslint/*` | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint) |
47
+ | `vue/*` | `vue/*` | [eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue) |
48
+ | `import/*` | `import-x/*` | [eslint-plugin-import-x](https://github.com/un-es/eslint-plugin-import-x) |
49
+ | `style/*` | `@stylistic/*` | [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic) |
50
+ | `unicorn/*` | `unicorn/*` | [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) |
51
+ | `regexp/*` | `regexp/*` | [eslint-plugin-regexp](https://github.com/ota-meshi/eslint-plugin-regexp) |
52
+ | `test/*` | `vitest/*` | [eslint-plugin-vitest](https://github.com/veritem/eslint-plugin-vitest) |
50
53
 
51
54
  ## Tips
52
55
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lntvow/eslint-config",
3
- "version": "9.30.0",
3
+ "version": "9.30.2",
4
4
  "type": "module",
5
5
  "description": "Customizable eslint configuration",
6
6
  "keywords": [
@@ -44,13 +44,14 @@
44
44
  "find-up-simple": "^1.0.1",
45
45
  "globals": "^16.3.0",
46
46
  "local-pkg": "^1.1.1",
47
- "typescript-eslint": "^8.38.0",
47
+ "typescript-eslint": "^8.39.0",
48
48
  "vue-eslint-parser": "^9.4.3",
49
- "@lntvow/eslint-plugin": "^9.30.0"
49
+ "@lntvow/eslint-plugin": "^9.30.2"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@commitlint/cli": "^19.8.1",
53
53
  "@commitlint/config-conventional": "^19.8.1",
54
+ "@lntvow/eslint-config": "^9.30.1",
54
55
  "@types/estree": "^1.0.8",
55
56
  "@types/node": "^22.15.32",
56
57
  "axios": "^1.11.0",
@@ -67,7 +68,7 @@
67
68
  "simple-git-hooks": "^2.13.1",
68
69
  "tsup": "^8.5.0",
69
70
  "tsx": "^4.20.3",
70
- "typescript": "^5.8.4"
71
+ "typescript": "^5.9.2"
71
72
  },
72
73
  "scripts": {
73
74
  "rimraf": "rimraf ./node_modules/ && pnpm -r rimraf",