jh-be-tools 1.0.41 → 1.0.43

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.
@@ -96,7 +96,6 @@ declare const _default: (import("eslint").Linter.Config<import("eslint").Linter.
96
96
  };
97
97
  };
98
98
  rules: {
99
- semi: string;
100
99
  'import/order': (string | {
101
100
  'newlines-between': string;
102
101
  alphabetize: {
@@ -108,6 +107,7 @@ declare const _default: (import("eslint").Linter.Config<import("eslint").Linter.
108
107
  "prettier/prettier": (string | {
109
108
  singleQuote: boolean;
110
109
  })[];
110
+ semi: string[];
111
111
  };
112
112
  })[];
113
113
  export default _default;
@@ -48,7 +48,6 @@ export default [
48
48
  },
49
49
  },
50
50
  rules: {
51
- semi: 'off',
52
51
  'import/order': [
53
52
  'error',
54
53
  {
@@ -61,6 +60,7 @@ export default [
61
60
  'import/export': 'off',
62
61
  "quotes": ["off"],
63
62
  "prettier/prettier": ["error", { "singleQuote": true }],
63
+ "semi": ['error', 'never'],
64
64
  },
65
65
  },
66
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.41",
3
+ "version": "1.0.43",
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
- }