@eienjs/eslint-config 1.11.3 → 1.11.4

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.
@@ -4,7 +4,7 @@ const versionsMap = {
4
4
  "@nuxt/eslint-plugin": "^1.15.2",
5
5
  "astro-eslint-parser": "^1.4.0",
6
6
  "eslint": "^10.2.0",
7
- "eslint-plugin-astro": "^1.6.0",
7
+ "eslint-plugin-astro": "^1.7.0",
8
8
  "eslint-plugin-format": "^2.0.1",
9
9
  "prettier-plugin-astro": "^0.14.1"
10
10
  };
@@ -12,6 +12,8 @@ function e18e(options = {}) {
12
12
  ...modernization ? { ...configs.modernization.rules } : {},
13
13
  ...moduleReplacements ? { ...configs.moduleReplacements.rules } : {},
14
14
  ...performanceImprovements ? { ...configs.performanceImprovements.rules } : {},
15
+ "e18e/prefer-array-at": "off",
16
+ "e18e/prefer-array-from-map": "off",
15
17
  "e18e/prefer-array-to-reversed": "off",
16
18
  "e18e/prefer-array-to-sorted": "off",
17
19
  "e18e/prefer-array-to-spliced": "off",
package/dist/globs.js CHANGED
@@ -61,6 +61,7 @@ const GLOB_EXCLUDE = [
61
61
  "**/.tmp",
62
62
  "**/vendor",
63
63
  "**/public",
64
+ "**/tests/_files",
64
65
  "**/.history",
65
66
  "**/.vitepress/cache",
66
67
  "**/.adonisjs",
@@ -76,14 +77,20 @@ const GLOB_EXCLUDE = [
76
77
  "**/.vite-inspect",
77
78
  "**/.yarn",
78
79
  "**/.pnpm-store",
79
- "**/vite.config.*.timestamp-*",
80
80
  "**/CHANGELOG*.md",
81
- "**/*.min.*",
82
81
  "**/LICENSE*",
82
+ "**/*.min.*",
83
83
  "**/__snapshots__",
84
+ "**/vite.config.*.timestamp-*",
84
85
  "**/auto-import?(s).d.ts",
85
86
  "**/components.d.ts",
86
- "**/tests/_files"
87
+ "**/auto_import?(s).d.ts",
88
+ "**/typed_router.d.ts",
89
+ "**/.context",
90
+ "**/.claude",
91
+ "**/.agents",
92
+ "**/.*/skills",
93
+ "**/.continue"
87
94
  ];
88
95
  //#endregion
89
96
  export { GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_CSS, GLOB_EXCLUDE, GLOB_EXTS, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVG, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_VUE, GLOB_XML, GLOB_YAML };
package/dist/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  //#region package.json
2
- var version = "1.11.3";
2
+ var version = "1.11.4";
3
3
  //#endregion
4
4
  export { version };
package/dist/typegen.d.ts CHANGED
@@ -1553,6 +1553,11 @@ interface RuleOptions {
1553
1553
  * @see https://ota-meshi.github.io/eslint-plugin-astro/rules/no-exports-from-components/
1554
1554
  */
1555
1555
  'astro/no-exports-from-components'?: Linter.RuleEntry<[]>;
1556
+ /**
1557
+ * disallow `prerender` export outside of pages/ directory
1558
+ * @see https://ota-meshi.github.io/eslint-plugin-astro/rules/no-prerender-export-outside-pages/
1559
+ */
1560
+ 'astro/no-prerender-export-outside-pages'?: Linter.RuleEntry<[]>;
1556
1561
  /**
1557
1562
  * disallow use of `set:html` to prevent XSS attack
1558
1563
  * @see https://ota-meshi.github.io/eslint-plugin-astro/rules/no-set-html-directive/
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@eienjs/eslint-config",
3
3
  "type": "module",
4
- "version": "1.11.3",
4
+ "version": "1.11.4",
5
5
  "description": "EienJS ESLint Config",
6
6
  "author": "Fernando Isidro <luffynando@gmail.com> (https://github.com/luffynando/)",
7
7
  "license": "MIT",
@@ -77,9 +77,9 @@
77
77
  "@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
78
78
  "@eslint/markdown": "^8.0.1",
79
79
  "@stylistic/eslint-plugin": "^5.10.0",
80
- "@typescript-eslint/eslint-plugin": "^8.58.0",
81
- "@typescript-eslint/parser": "^8.58.0",
82
- "@vitest/eslint-plugin": "^1.6.14",
80
+ "@typescript-eslint/eslint-plugin": "^8.58.1",
81
+ "@typescript-eslint/parser": "^8.58.1",
82
+ "@vitest/eslint-plugin": "^1.6.15",
83
83
  "ansis": "^4.2.0",
84
84
  "cac": "^7.0.0",
85
85
  "eslint-config-flat-gitignore": "^2.3.0",
@@ -119,9 +119,9 @@
119
119
  "@types/node": "^24.12.2",
120
120
  "astro-eslint-parser": "^1.4.0",
121
121
  "auto-changelog": "^2.5.0",
122
- "baseline-browser-mapping": "^2.10.16",
122
+ "baseline-browser-mapping": "^2.10.17",
123
123
  "eslint": "^10.2.0",
124
- "eslint-plugin-astro": "^1.6.0",
124
+ "eslint-plugin-astro": "^1.7.0",
125
125
  "eslint-plugin-erasable-syntax-only": "^0.4.0",
126
126
  "eslint-plugin-format": "^2.0.1",
127
127
  "eslint-typegen": "^2.3.1",