@vijayhardaha/dev-config 1.0.5 → 1.0.7

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vijayhardaha/dev-config",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "Reusable development configurations for Next.js + TypeScript projects",
5
5
  "author": "Vijay Hardaha",
6
6
  "license": "MIT",
@@ -17,7 +17,7 @@
17
17
  "exports": {
18
18
  ".": "./src/index.js",
19
19
  "./eslint": "./src/eslint/index.js",
20
- "./eslint/ts": "./src/eslint/ts.js",
20
+ "./eslint/ts": "./src/eslint/typescript.js",
21
21
  "./eslint/react": "./src/eslint/react.js",
22
22
  "./eslint/next": "./src/eslint/next.js",
23
23
  "./prettier": "./src/prettier/index.js",
@@ -17,7 +17,7 @@ const config = {
17
17
  // ---- Rules ----
18
18
  // Maximum length for the commit header (first line)
19
19
  rules: {
20
- 'header-max-length': [2, 'always', 50],
20
+ 'header-max-length': [2, 'always', 60],
21
21
 
22
22
  // Maximum length for any line in the commit body
23
23
  'body-max-line-length': [2, 'always', 72],