@egy186/eslint-config 4.5.1 → 4.5.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.
@@ -193,6 +193,11 @@ declare const config: {
193
193
  readonly 'import/no-named-as-default-member': "off";
194
194
  readonly 'import/no-unresolved': "off";
195
195
  readonly 'init-declarations': "off";
196
+ readonly 'jsdoc/no-types': "error";
197
+ readonly 'jsdoc/no-undefined-types': "off";
198
+ readonly 'jsdoc/require-param-type': "off";
199
+ readonly 'jsdoc/require-property-type': "off";
200
+ readonly 'jsdoc/require-returns-type': "off";
196
201
  readonly 'max-params': "off";
197
202
  readonly 'no-array-constructor': "off";
198
203
  readonly 'no-dupe-class-members': "off";
@@ -198,6 +198,11 @@ const config = {
198
198
  'import/no-named-as-default-member': 'off',
199
199
  'import/no-unresolved': 'off',
200
200
  'init-declarations': 'off',
201
+ 'jsdoc/no-types': 'error',
202
+ 'jsdoc/no-undefined-types': 'off',
203
+ 'jsdoc/require-param-type': 'off',
204
+ 'jsdoc/require-property-type': 'off',
205
+ 'jsdoc/require-returns-type': 'off',
201
206
  'max-params': 'off',
202
207
  'no-array-constructor': 'off',
203
208
  'no-dupe-class-members': 'off',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@egy186/eslint-config",
3
3
  "description": "Eslint shareable config",
4
- "version": "4.5.1",
4
+ "version": "4.5.3",
5
5
  "author": "egy186",
6
6
  "bugs": {
7
7
  "url": "https://github.com/egy186/eslint-config/issues"
@@ -71,7 +71,7 @@
71
71
  "eslint-import-resolver-typescript": "^4.2.2",
72
72
  "eslint-plugin-react": "^7.36.1",
73
73
  "eslint-plugin-react-hooks": "^7.0.0",
74
- "typescript": "^6.0.2",
74
+ "typescript": "^5.0.4 || ^6.0.2",
75
75
  "typescript-eslint": "^8.53.0"
76
76
  },
77
77
  "peerDependenciesMeta": {