@mouse_484/eslint-config 4.3.2 → 4.3.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mouse_484/eslint-config",
3
3
  "type": "module",
4
- "version": "4.3.2",
4
+ "version": "4.3.3",
5
5
  "author": "mouse_484",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/mouse484/config/tree/main/packages/eslint",
@@ -29,6 +29,7 @@ export default createConfigs({
29
29
  ],
30
30
  rules: {
31
31
  'unicorn/filename-case': 'off',
32
+ 'unicorn/prevent-abbreviations': 'off',
32
33
  },
33
34
  },
34
35
  ],
package/src/lib/type.d.ts CHANGED
@@ -15,6 +15,7 @@ export declare function mouse(
15
15
  options: Options,
16
16
  ...configs: AntfuUserConfigs
17
17
  ): ReturnType<typeof antfu>
18
+ export default mouse
18
19
 
19
20
  // factoty
20
21
  type ConfigItem = TypedFlatConfigItem & { withOptions?: (keyof Options)[], name: string }