@ntnyq/eslint-config 4.3.0 → 5.0.0-beta.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.
- package/README.md +7 -0
- package/dist/{index.d.mts → index.d.ts} +8737 -8803
- package/dist/index.js +3032 -0
- package/package.json +35 -25
- package/dist/index.mjs +0 -3612
package/README.md
CHANGED
|
@@ -7,6 +7,11 @@
|
|
|
7
7
|
[](https://www.npmjs.com/package/@ntnyq/eslint-config)
|
|
8
8
|
[](https://github.com/ntnyq/eslint-config/blob/main/LICENSE)
|
|
9
9
|
|
|
10
|
+
## Requirement
|
|
11
|
+
|
|
12
|
+
- NodeJS v20.11.0+
|
|
13
|
+
- ESLint v9.20.0+
|
|
14
|
+
|
|
10
15
|
## Features
|
|
11
16
|
|
|
12
17
|
- Designed to work alongside with [Prettier](https://prettier.io) and [TypeScript](https://www.typescriptlang.org/)
|
|
@@ -232,6 +237,8 @@ export interface ConfigOptions {
|
|
|
232
237
|
/**
|
|
233
238
|
* Configs bellow are disabled by default
|
|
234
239
|
*/
|
|
240
|
+
astro?: boolean | ConfigAstroOptions
|
|
241
|
+
html?: boolean | ConfigHtmlOptions
|
|
235
242
|
pnpm?: boolean | ConfigPnpmOptions
|
|
236
243
|
svgo?: boolean | ConfigSVGOOptions
|
|
237
244
|
eslintPlugin?: boolean | ConfigESLintPluginOptions
|