|
8 | 8 | "description": "", |
9 | 9 | "devDependencies": { |
10 | 10 | "@arethetypeswrong/cli": "^0.18.1", |
11 | | - "@eslint/eslintrc": "^3.3.1", |
12 | | - "@eslint/js": "^9.22.0", |
13 | | - "lefthook": "^1.11.4", |
14 | | - "@tstv/eslint-config": "^4.0.0", |
15 | 11 | "@tstv/tsconfig-common": "^3.7.0", |
16 | 12 | "@types/node": "^24.0.8", |
17 | 13 | "@vitest/coverage-v8": "^3.0.9", |
18 | 14 | "cross-env": "^10.0.0", |
19 | 15 | "dependency-cruiser": "^17.0.1", |
20 | | - "eslint": "^9.23.0", |
21 | 16 | "generate-changelog": "^1.8.0", |
22 | | - "prettier": "^3.5.3", |
23 | 17 | "ts-node": "^10.9.2", |
24 | 18 | "typescript": "^5.7.3", |
25 | 19 | "vitest": "^3.0.6" |
|
40 | 34 | }, |
41 | 35 | "scripts": { |
42 | 36 | "build": "tsc", |
43 | | - "check": "npm run check:format -- --list-different && npm run check:lint", |
44 | | - "check:format": "prettier --ignore-path .gitignore --log-level error .", |
45 | | - "check:lint": "eslint --ext .js,.jsx,.ts,.tsx --no-error-on-unmatched-pattern .", |
| 37 | + "check": "exit 0", |
| 38 | + "check:format": "exit 0", |
| 39 | + "check:lint": "exit 0", |
46 | 40 | "clean": "rm -rf coverage dist", |
47 | 41 | "commit": "npm run fix && git commit -am \"chore: Generated release files\"", |
48 | 42 | "deploy": "exit 0", |
49 | 43 | "dev": "tsc --noEmit && node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only ./src/start.ts", |
50 | 44 | "dist": "npm run clean && npm run build && attw --pack . --ignore-rules cjs-resolves-to-esm", |
51 | | - "fix": "npm run fix:format && npm run fix:lint", |
52 | | - "fix:format": "npm run check:format -- --write", |
53 | | - "fix:lint": "npm run check:lint -- --fix --quiet", |
| 45 | + "fix": "exit 0", |
| 46 | + "fix:format": "exit 0", |
| 47 | + "fix:lint": "exit 0", |
54 | 48 | "postversion": "git push origin && git push origin --tags && npm publish --access public && git restore .", |
55 | 49 | "preversion": "git checkout main && git pull && npm install && npm run test && npm run dist", |
56 | 50 | "release:major": "generate-changelog -M -x \"chore,test\" && npm run commit && npm version major", |
|
0 commit comments