@askviraj/linter 1.0.0 → 1.0.5

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.
@@ -9,4 +9,10 @@ export const ignores = globalIgnores([
9
9
  ".agents/**/*.md",
10
10
  ".claude/**/*.md",
11
11
  ".github/**/*.md",
12
+ "**/worktrees/**",
13
+ "**/.worktrees/**",
14
+ "**/superpowers/**",
15
+ "**/coverage/**",
16
+ "graphify-out/**",
17
+ "**/graphify-out/**",
12
18
  ]);
@@ -1,5 +1,5 @@
1
1
  import tsParser from "@typescript-eslint/parser";
2
- import astroParser from "astro-eslint-parser";
2
+ import * as astroParser from "astro-eslint-parser";
3
3
  import astro from "eslint-plugin-astro";
4
4
  import globals from "globals";
5
5
  export const astroConfig = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@askviraj/linter",
3
- "version": "1.0.0",
3
+ "version": "1.0.5",
4
4
  "description": "A linter & formatter CLI for JavaScript, TypeScript, Astro, JSON, JSONC, CSS, HTML, Markdown, YAML, TOML, and more.",
5
5
  "keywords": [
6
6
  "lint",
@@ -48,36 +48,38 @@
48
48
  ],
49
49
  "scripts": {
50
50
  "build": "tsc -p tsconfig.build.json",
51
- "prepublishOnly": "bun run build",
52
- "test": "bun test tests/unit",
53
- "test:all": "bun run build && bun test",
54
- "test:integration": "bun run build && bun test tests/integration"
51
+ "prepublishOnly": "pnpm run build",
52
+ "test": "pnpm run build && pnpx vitest run tests/unit",
53
+ "test:all": "pnpm run build && pnpx vitest run tests",
54
+ "test:integration": "pnpm run build && pnpx vitest run tests/integration"
55
55
  },
56
56
  "dependencies": {
57
- "@eslint/css": "1.1.0",
57
+ "@eslint/css": "1.3.0",
58
58
  "@eslint/js": "10.0.1",
59
- "@eslint/json": "1.2.0",
60
- "@eslint/markdown": "8.0.1",
61
- "@html-eslint/eslint-plugin": "0.59.0",
59
+ "@eslint/json": "2.0.0",
60
+ "@eslint/markdown": "8.0.2",
61
+ "@html-eslint/eslint-plugin": "0.62.0",
62
62
  "@poupe/eslint-plugin-tailwindcss": "0.3.1",
63
- "@typescript-eslint/parser": "8.59.1",
64
- "astro-eslint-parser": "1.4.0",
65
- "eslint": "10.2.1",
66
- "eslint-plugin-astro": "1.7.0",
67
- "eslint-plugin-toml": "1.3.1",
68
- "eslint-plugin-yml": "3.3.1",
69
- "globals": "17.5.0",
63
+ "@typescript-eslint/parser": "8.61.1",
64
+ "astro-eslint-parser": "2.0.0",
65
+ "debug": "4.4.3",
66
+ "eslint": "10.5.0",
67
+ "eslint-plugin-astro": "2.0.0",
68
+ "eslint-plugin-toml": "1.4.0",
69
+ "eslint-plugin-yml": "3.4.0",
70
+ "globals": "17.6.0",
70
71
  "jsonc-parser": "3.3.1",
71
- "typescript-eslint": "8.59.1",
72
- "yaml": "2.8.3",
72
+ "typescript-eslint": "8.61.1",
73
+ "yaml": "2.9.0",
73
74
  "yaml-eslint-parser": "2.0.0"
74
75
  },
75
76
  "devDependencies": {
76
- "@bun-security-scanner/osv": "1.0.0",
77
- "@types/bun": "1.3.13",
78
- "@types/node": "25.6.0",
79
- "sort-package-json": "3.6.1",
80
- "typescript": "6.0.3"
77
+ "@types/node": "26.0.0",
78
+ "jiti": "2.7.0",
79
+ "sort-package-json": "4.0.0",
80
+ "tsx": "4.22.4",
81
+ "typescript": "6.0.3",
82
+ "vitest": "4.1.9"
81
83
  },
82
84
  "peerDependencies": {
83
85
  "eslint": "^10.0.0"