|
31 | 31 | "scripts": { |
32 | 32 | "check": "run-p -c --aggregate-output check:*", |
33 | 33 | "lint-ci": "pnpm run check:lint", |
34 | | - "check:lint": "eslint --report-unused-disable-directives .", |
| 34 | + "check:lint": "eslint --config .config/eslint.config.mjs --report-unused-disable-directives .", |
35 | 35 | "check:lint:fix": "pnpm run check:lint --fix", |
36 | 36 | "build": "pnpm run clean:dist && tsgo --build", |
37 | 37 | "check:tsc": "tsgo --noEmit -p tsconfig.check.json", |
|
48 | 48 | "fix": "run-s lint:fix check:lint:fix", |
49 | 49 | "knip:dependencies": "knip --dependencies", |
50 | 50 | "knip:exports": "knip --include exports,duplicates", |
51 | | - "lint": "oxlint -c=.oxlintrc.json --ignore-path=.oxlintignore --tsconfig=tsconfig.json .", |
| 51 | + "lint": "oxlint -c=.config/.oxlintrc.json --ignore-path=.oxlintignore --tsconfig=tsconfig.json .", |
52 | 52 | "lint:fix": "run-s -c lint:fix:*", |
53 | | - "lint:fix:oxlint": "oxlint -c=.oxlintrc.json --ignore-path=.oxlintignore --tsconfig=tsconfig.json --quiet --fix . | dev-null", |
| 53 | + "lint:fix:oxlint": "oxlint -c=.config/.oxlintrc.json --ignore-path=.oxlintignore --tsconfig=tsconfig.json --quiet --fix . | dev-null", |
54 | 54 | "lint:fix:biome": "biome format --log-level=none --fix . | dev-null", |
55 | | - "lint:fix:eslint": "eslint --report-unused-disable-directives --fix . | dev-null", |
| 55 | + "lint:fix:eslint": "eslint --config .config/eslint.config.mjs --report-unused-disable-directives --fix . | dev-null", |
56 | 56 | "lint-staged": "lint-staged", |
57 | 57 | "precommit": "lint-staged", |
58 | 58 | "prepare": "husky", |
59 | 59 | "prepublishOnly": "echo 'ERROR: Use GitHub Actions workflow for publishing' && exit 1", |
60 | | - "pretest:unit": "dotenvx -q run -f .env.test -- pnpm run build", |
| 60 | + "pretest:unit": "pnpm run build", |
61 | 61 | "test": "run-s check test:*", |
62 | 62 | "test:unit": "dotenvx -q run -f .env.test -- vitest --run", |
63 | 63 | "test:unit:coverage": "dotenvx -q run -f .env.test -- vitest run --coverage", |
|
0 commit comments