@jmlweb/eslint-config-astro 1.0.1 → 1.0.3
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.
- package/CHANGELOG.md +14 -0
- package/README.md +27 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @jmlweb/eslint-config-astro
|
|
2
2
|
|
|
3
|
+
## 1.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6b73301: Add changelog section with link to CHANGELOG.md in package READMEs
|
|
8
|
+
- Updated dependencies [6b73301]
|
|
9
|
+
- @jmlweb/eslint-config-base@2.0.3
|
|
10
|
+
|
|
11
|
+
## 1.0.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- beae5ae: Add trailing newlines to source files for consistency.
|
|
16
|
+
|
|
3
17
|
## 1.0.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -25,6 +25,8 @@
|
|
|
25
25
|
npm install --save-dev @jmlweb/eslint-config-astro eslint @eslint/js typescript-eslint eslint-config-prettier eslint-plugin-astro eslint-plugin-simple-import-sort @jmlweb/eslint-config-base
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
+
> 💡 **Upgrading from a previous version?** See the [Migration Guide](#-migration-guide) for breaking changes and upgrade instructions.
|
|
29
|
+
|
|
28
30
|
## 🚀 Quick Start
|
|
29
31
|
|
|
30
32
|
Create an `eslint.config.js` file in your project root:
|
|
@@ -227,10 +229,35 @@ This package requires the following peer dependencies:
|
|
|
227
229
|
|
|
228
230
|
## 🔗 Related Packages
|
|
229
231
|
|
|
232
|
+
### Internal Packages
|
|
233
|
+
|
|
230
234
|
- [`@jmlweb/eslint-config-base`](../eslint-config-base) - Base TypeScript ESLint config (extended by this package)
|
|
231
235
|
- [`@jmlweb/tsconfig-astro`](../tsconfig-astro) - TypeScript configuration for Astro projects
|
|
232
236
|
- [`@jmlweb/prettier-config-base`](../prettier-config-base) - Prettier config for consistent formatting
|
|
233
237
|
|
|
238
|
+
### External Tools
|
|
239
|
+
|
|
240
|
+
- [ESLint](https://eslint.org/) - Pluggable linting utility for JavaScript and TypeScript
|
|
241
|
+
- [Astro](https://astro.build/) - The web framework for content-driven websites
|
|
242
|
+
- [eslint-plugin-astro](https://ota-meshi.github.io/eslint-plugin-astro/) - ESLint plugin for Astro components
|
|
243
|
+
- [Prettier Plugin Astro](https://github.com/withastro/prettier-plugin-astro) - Prettier plugin for .astro files
|
|
244
|
+
|
|
245
|
+
## 🔄 Migration Guide
|
|
246
|
+
|
|
247
|
+
### Upgrading to a New Version
|
|
248
|
+
|
|
249
|
+
> **Note:** If no breaking changes were introduced in a version, it's safe to upgrade without additional steps.
|
|
250
|
+
|
|
251
|
+
**No breaking changes have been introduced yet.** This package follows semantic versioning. When breaking changes are introduced, detailed migration instructions will be provided here.
|
|
252
|
+
|
|
253
|
+
For version history, see the [Changelog](./CHANGELOG.md).
|
|
254
|
+
|
|
255
|
+
**Need Help?** If you encounter issues during migration, please [open an issue](https://github.com/jmlweb/tooling/issues/new).
|
|
256
|
+
|
|
257
|
+
## 📜 Changelog
|
|
258
|
+
|
|
259
|
+
See [CHANGELOG.md](./CHANGELOG.md) for version history and release notes.
|
|
260
|
+
|
|
234
261
|
## 📄 License
|
|
235
262
|
|
|
236
263
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jmlweb/eslint-config-astro",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "ESLint configuration for Astro projects with TypeScript. Extends @jmlweb/eslint-config-base with Astro-specific rules.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -47,15 +47,15 @@
|
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"@eslint/js": "^9.0.0",
|
|
50
|
-
"@jmlweb/eslint-config-base": "^2.0.2",
|
|
51
50
|
"eslint": "^9.0.0",
|
|
52
51
|
"eslint-config-prettier": "^9.1.0",
|
|
53
52
|
"eslint-plugin-astro": "^1.5.0",
|
|
54
53
|
"eslint-plugin-simple-import-sort": "^12.0.0",
|
|
55
|
-
"typescript-eslint": "^8.0.0"
|
|
54
|
+
"typescript-eslint": "^8.0.0",
|
|
55
|
+
"@jmlweb/eslint-config-base": "2.0.3"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@jmlweb/eslint-config-base": "2.0.
|
|
58
|
+
"@jmlweb/eslint-config-base": "2.0.3"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@eslint/js": "^9.39.2",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"tsup": "^8.5.1",
|
|
68
68
|
"typescript": "^5.9.3",
|
|
69
69
|
"typescript-eslint": "^8.34.1",
|
|
70
|
-
"@jmlweb/eslint-config-base": "2.0.
|
|
70
|
+
"@jmlweb/eslint-config-base": "2.0.3",
|
|
71
71
|
"@jmlweb/tsconfig-internal": "0.0.1"
|
|
72
72
|
},
|
|
73
73
|
"scripts": {
|