@kazupon/eslint-config 0.29.0 → 0.31.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.
Files changed (4) hide show
  1. package/README.md +5 -4
  2. package/dist/index.d.ts +15699 -15991
  3. package/dist/index.js +232 -14
  4. package/package.json +40 -34
package/README.md CHANGED
@@ -108,12 +108,12 @@ Add the following settings to your `.vscode/settings.json`:
108
108
  "jsonc",
109
109
  "json5",
110
110
  "markdown",
111
+ "html",
111
112
  "yaml",
112
113
  "toml",
113
- "css"
114
- ],
115
- // Enable flat configuration
116
- "eslint.useFlatConfig": true
114
+ "css",
115
+ "html"
116
+ ]
117
117
  }
118
118
  ```
119
119
 
@@ -142,6 +142,7 @@ The following built-in preset configurations are supported:
142
142
  | `toml` | [`eslint-plugin-toml`](https://www.npmjs.com/package/eslint-plugin-toml) | yes |
143
143
  | `markdown` | [`@eslint/markdown`](https://www.npmjs.com/package/@eslint/markdown) | yes |
144
144
  | `css` | [`@eslint/css`](https://www.npmjs.com/package/@eslint/css) | yes |
145
+ | `html` | [`@html-eslint/eslint-plugin`](https://www.npmjs.com/package/@html-eslint/eslint-plugin) | yes |
145
146
 
146
147
  You can use `import` syntax:
147
148