@vijayhardaha/dev-config 1.0.11 → 1.0.12
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.
- package/package.json +3 -2
- package/src/eslint/common.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vijayhardaha/dev-config",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"description": "Reusable development configurations for Next.js + TypeScript projects",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Vijay Hardaha",
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"format:check": "prettier --check .",
|
|
16
16
|
"release": "release-it",
|
|
17
17
|
"release:dry": "release-it --dry-run",
|
|
18
|
-
"prepare": "husky"
|
|
18
|
+
"prepare": "husky",
|
|
19
|
+
"gc": "source .tmp/git.md"
|
|
19
20
|
},
|
|
20
21
|
"files": [
|
|
21
22
|
"src",
|
package/src/eslint/common.js
CHANGED
|
@@ -150,7 +150,7 @@ export const jsdocRules = (jsdoc = true) =>
|
|
|
150
150
|
|
|
151
151
|
// Avoid useless docs
|
|
152
152
|
'jsdoc/no-types': 'off',
|
|
153
|
-
'jsdoc/informative-docs': '
|
|
153
|
+
'jsdoc/informative-docs': 'off',
|
|
154
154
|
|
|
155
155
|
// Enforce property docs in typedef-style (optional)
|
|
156
156
|
'jsdoc/require-property-description': 'warn',
|