jh-be-tools 1.0.45 → 1.0.47

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.
@@ -107,8 +107,10 @@ declare const _default: (import("eslint").Linter.Config<import("eslint").Linter.
107
107
  "prettier/prettier": (string | {
108
108
  singleQuote: boolean;
109
109
  semi: boolean;
110
+ useTabs: boolean;
110
111
  })[];
111
112
  semi: string[];
113
+ indent: string[];
112
114
  };
113
115
  })[];
114
116
  export default _default;
@@ -59,8 +59,9 @@ export default [
59
59
  ],
60
60
  'import/export': 'off',
61
61
  "quotes": ["off"],
62
- "prettier/prettier": ["error", { "singleQuote": true, "semi": false }],
62
+ "prettier/prettier": ["error", { "singleQuote": true, "semi": false, useTabs: true }],
63
63
  "semi": ['error', 'never'],
64
+ 'indent': ['error', 'tab'],
64
65
  },
65
66
  },
66
67
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jh-be-tools",
3
- "version": "1.0.45",
3
+ "version": "1.0.47",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -39,7 +39,6 @@
39
39
  },
40
40
  "exports": {
41
41
  "./eslint.config.mjs": "./dist/config/eslint.config.mjs",
42
- "./prettier": "./dist/config/prettier.config.js",
43
42
  ".": "./dist/index.js"
44
43
  }
45
44
  }