@kazupon/eslint-config 0.27.0 → 0.29.0
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/README.md +3 -1
- package/dist/index.d.ts +1963 -72
- package/dist/index.js +73 -9
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -10,6 +10,7 @@ ESLint config for @kazupon
|
|
|
10
10
|
- Flat configuration via [vite](https://vitejs.dev/config/) flavor `defineConfig`
|
|
11
11
|
- Support [built-in preset configurations](#built-in-preset-configurations)
|
|
12
12
|
- `javascript`
|
|
13
|
+
- `stylistic`
|
|
13
14
|
- `comments`
|
|
14
15
|
- `typescript`
|
|
15
16
|
- `imports`
|
|
@@ -123,7 +124,8 @@ The following built-in preset configurations are supported:
|
|
|
123
124
|
| Configuration | Powered by eslint plugin or package | Need to install eslint plugin or package? |
|
|
124
125
|
| ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------- |
|
|
125
126
|
| `javascript` | [`@eslint/js`](https://www.npmjs.com/package/@eslint/js) | no (built-in) |
|
|
126
|
-
| `
|
|
127
|
+
| `stylistic` | [`@stylistic/eslint-plugin`](https://www.npmjs.com/package/@stylistic/eslint-plugin) | no (built-in) |
|
|
128
|
+
| `comments` | [`@eslint-community/eslint-plugin-eslint-comments`](https://www.npmjs.com/package/@eslint-community/eslint-plugin-eslint-comments), [`@kazupon/eslint-plugin`(comment config)](https://www.npmjs.com/package/@kazupon/eslint-plugin) | no (built-in) |
|
|
127
129
|
| `typescript` | [`typescript-eslint`](https://www.npmjs.com/package/typescript-eslint) | yes |
|
|
128
130
|
| `imports` | [`eslint-plugin-import`](https://www.npmjs.com/package/eslint-plugin-import), [`eslint-plugin-unused-imports`](https://www.npmjs.com/package/eslint-plugin-unused-imports), [`eslint-plugin-module-interop`](https://www.npmjs.com/package/eslint-plugin-module-interop) | yes |
|
|
129
131
|
| `jsdoc` | [`eslint-plugin-jsdoc`](https://www.npmjs.com/package/eslint-plugin-jsdoc) | yes |
|