@vijayhardaha/dev-config 1.0.7 → 1.0.8

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,8 +1,11 @@
1
1
  {
2
2
  "name": "@vijayhardaha/dev-config",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Reusable development configurations for Next.js + TypeScript projects",
5
- "author": "Vijay Hardaha",
5
+ "author": {
6
+ "name": "Vijay Hardaha",
7
+ "url": "https://github.com/vijayhardaha"
8
+ },
6
9
  "license": "MIT",
7
10
  "type": "module",
8
11
  "main": "./src/index.js",
@@ -156,7 +159,7 @@
156
159
  "@eslint/compat": "^2.0.3",
157
160
  "@eslint/eslintrc": "^3.3.5",
158
161
  "@eslint/js": "^9.39.4",
159
- "@typescript-eslint/parser": "^8.57.2",
162
+ "@typescript-eslint/parser": "^8.58.0",
160
163
  "eslint": "^9.39.4",
161
164
  "eslint-config-prettier": "^10.1.8",
162
165
  "eslint-import-resolver-typescript": "^4.4.4",
@@ -4,7 +4,7 @@
4
4
  * =====================================================================
5
5
  * Purpose: Enforce conventional commit message standards for consistent
6
6
  * and meaningful Git commit history.
7
- * Docs: https://commitlint.js.org/#/
7
+ * Docs: https://commitlint.js.org/#/
8
8
  * =====================================================================
9
9
  */
10
10
 
@@ -60,6 +60,9 @@ const config = {
60
60
  files: ['*.json', '*.jsonc', '*.yml', '*.yaml', '*.md', '*.mdx'],
61
61
  options: { tabWidth: 2, trailingComma: 'none' },
62
62
  },
63
+ // ---- YAML ----
64
+ // Use yaml parser with 2-space indentation
65
+ { files: ['*.yml', '*.yaml'], options: { parser: 'yaml', tabWidth: 2 } },
63
66
  ],
64
67
  };
65
68