eslint-config-prettier 10.1.1 → 10.1.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.
Files changed (3) hide show
  1. package/flat.d.ts +6 -2
  2. package/index.d.ts +5 -1
  3. package/package.json +5 -1
package/flat.d.ts CHANGED
@@ -1,3 +1,7 @@
1
- export * from "./index.js";
1
+ import eslintConfigPrettier from "./index.js";
2
2
 
3
- export const name: "config-prettier";
3
+ declare const eslintConfigPrettierFlat: typeof eslintConfigPrettier & {
4
+ name: "config-prettier";
5
+ };
6
+
7
+ export = eslintConfigPrettierFlat;
package/index.d.ts CHANGED
@@ -1 +1,5 @@
1
- export const rules: Record<string, 0 | "off">;
1
+ declare const eslintConfigPrettier: {
2
+ rules: Record<string, 0 | "off">;
3
+ };
4
+
5
+ export = eslintConfigPrettier;
package/package.json CHANGED
@@ -1,10 +1,14 @@
1
1
  {
2
2
  "name": "eslint-config-prettier",
3
- "version": "10.1.1",
3
+ "version": "10.1.3",
4
4
  "type": "commonjs",
5
5
  "description": "Turns off all rules that are unnecessary or might conflict with Prettier.",
6
6
  "repository": "prettier/eslint-config-prettier",
7
+ "homepage": "https://github.com/prettier/eslint-config-prettier#readme",
7
8
  "author": "Simon Lydell",
9
+ "maintainers": [
10
+ "JounQin (https://www.1stG.me) <admin@1stg.me>"
11
+ ],
8
12
  "license": "MIT",
9
13
  "bin": "bin/cli.js",
10
14
  "main": "index.js",