jh-be-tools 1.0.40 → 1.0.42

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.
@@ -104,6 +104,10 @@ declare const _default: (import("eslint").Linter.Config<import("eslint").Linter.
104
104
  };
105
105
  })[];
106
106
  'import/export': string;
107
+ quotes: string[];
108
+ "prettier/prettier": (string | {
109
+ singleQuote: boolean;
110
+ })[];
107
111
  };
108
112
  })[];
109
113
  export default _default;
@@ -59,6 +59,8 @@ export default [
59
59
  },
60
60
  ],
61
61
  'import/export': 'off',
62
+ "quotes": ["off"],
63
+ "prettier/prettier": ["error", { "singleQuote": true }],
62
64
  },
63
65
  },
64
66
  {
@@ -0,0 +1,6 @@
1
+ export let semi: boolean;
2
+ export let trailingComma: string;
3
+ export let singleQuote: boolean;
4
+ export let endOfLine: string;
5
+ export let useTabs: boolean;
6
+ export let printWidth: number;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ module.exports = {
3
+ semi: false,
4
+ trailingComma: 'all',
5
+ singleQuote: true,
6
+ endOfLine: 'auto',
7
+ useTabs: true,
8
+ printWidth: 150,
9
+ };
@@ -1 +1 @@
1
- {"root":["../src/index.ts","../src/api-request/apirequest.ts","../src/config/eslint.config.mjs","../src/create-package-index-files/createpackageindexfiles.ts","../src/route-handler/routecreation.ts","../src/route-handler/routehandler.ts","../src/config/prettier.config.json"],"version":"5.8.2"}
1
+ {"root":["../src/index.ts","../src/api-request/apirequest.ts","../src/config/eslint.config.mjs","../src/config/prettier.config.js","../src/create-package-index-files/createpackageindexfiles.ts","../src/route-handler/routecreation.ts","../src/route-handler/routehandler.ts"],"version":"5.8.2"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jh-be-tools",
3
- "version": "1.0.40",
3
+ "version": "1.0.42",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "exports": {
41
41
  "./eslint.config.mjs": "./dist/config/eslint.config.mjs",
42
- "./prettier": "./dist/config/prettier.config.json",
42
+ "./prettier": "./dist/config/prettier.config.js",
43
43
  ".": "./dist/index.js"
44
44
  }
45
45
  }
@@ -1,8 +0,0 @@
1
- {
2
- "semi": false,
3
- "trailingComma": "all",
4
- "singleQuote": true,
5
- "endOfLine": "auto",
6
- "useTabs": true,
7
- "printWidth": 150
8
- }