Skip to content

Commit 470b1ff

Browse files
chore: remove prettier and eslint traces and use local biome
- Remove `linters` group from `.github/dependabot.yml` containing `eslint*`, `prettier`, and `@typescript-eslint/*`. - Update `package.json` scripts to use local binaries (e.g., `biome`, `jest`) instead of `npx`. - Remove `.eslintcache` from `.gitignore`. Co-authored-by: hussainweb <1040271+hussainweb@users.noreply.github.com>
1 parent 4ff7e82 commit 470b1ff

File tree

3 files changed

+8
-16
lines changed

3 files changed

+8
-16
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@ updates:
2424
actions:
2525
patterns:
2626
- '@actions/*'
27-
linters:
28-
patterns:
29-
- 'eslint*'
30-
- 'prettier'
31-
- '@typescript-eslint/*'
3227
test-runners:
3328
patterns:
3429
- 'jest'

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ typings/
5353
# Optional npm cache directory
5454
.npm
5555

56-
# Optional eslint cache
57-
.eslintcache
58-
5956
# Optional REPL history
6057
.node_repl_history
6158

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
"private": true,
88
"scripts": {
99
"bundle": "npm run format:write && npm run package",
10-
"ci-test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
11-
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg",
12-
"format:write": "npx @biomejs/biome check --write .",
13-
"format:check": "npx @biomejs/biome check .",
14-
"lint": "npx @biomejs/biome lint .",
15-
"local-action": "npx @github/local-action . src/main.ts .env",
16-
"package": "npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
10+
"ci-test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest",
11+
"coverage": "make-coverage-badge --output-path ./badges/coverage.svg",
12+
"format:write": "biome check --write .",
13+
"format:check": "biome check .",
14+
"lint": "biome lint .",
15+
"local-action": "local-action . src/main.ts .env",
16+
"package": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
1717
"package:watch": "npm run package -- --watch",
18-
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
18+
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest",
1919
"all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package"
2020
},
2121
"exports": {

0 commit comments

Comments
 (0)