@debbl/eslint-config 2.4.0 → 2.4.1

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 (2) hide show
  1. package/README.md +8 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -27,6 +27,7 @@ pnpm i eslint @debbl/eslint-config -D
27
27
  - test
28
28
  - jsonc
29
29
  - yml
30
+ - toml
30
31
  - markdown
31
32
  - prettier
32
33
 
@@ -51,7 +52,7 @@ export default config({
51
52
 
52
53
  ## 完整的 OptionConfig
53
54
 
54
- [types.ts](./src/types.ts#L56)
55
+ [types.ts](./src/types.ts#L58)
55
56
 
56
57
  ```ts
57
58
  export interface OptionsConfig extends OptionsComponentExts {
@@ -110,6 +111,12 @@ export interface OptionsConfig extends OptionsComponentExts {
110
111
  */
111
112
  yml?: boolean;
112
113
 
114
+ /**
115
+ * Enable TOML support.
116
+ * @default true
117
+ */
118
+ toml?: boolean;
119
+
113
120
  /**
114
121
  * Enable Markdown support.
115
122
  *
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@debbl/eslint-config",
3
3
  "type": "module",
4
- "version": "2.4.0",
4
+ "version": "2.4.1",
5
5
  "packageManager": "pnpm@8.12.0",
6
6
  "description": "Brendan Dash's ESLint config",
7
7
  "author": "Debbl <me@aiwan.run> (https://github.com/Debbl/)",