Skip to content

Commit

Permalink
chore: update scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
itsacoyote committed Aug 16, 2024
1 parent 01ba028 commit 2db2c8c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- markdownlint-disable -->
# This CODEOWNERS file sets the individuals responsible for code in the zksync-cli repository.

# These users are the default owners for everything in the repo.
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,3 @@ jobs:
run: npm ci
- name: Lint
run: npm run lint && npm run typecheck
- name: Spelling
run: npm run lint:spelling
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
"dev": "cross-env NODE_ENV=development node --no-warnings=ExperimentalWarning --loader ts-node/esm src/index.ts",
"typecheck": "tsc -p . --noEmit",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:spelling",
"lint:eslint": "eslint . --fix --no-error-on-unmatched-pattern --max-warnings=0",
"lint:spelling": "cspell lint .",
"lint:eslint": "eslint . --max-warnings=0",
"lint:prettier": "prettier --check .",
"format": "prettier --write .",
"lint:spelling": "cspell lint .",
"format": "eslint . --fix --no-error-on-unmatched-pattern --max-warnings=0 && prettier --write .",
"commitlint": "commitlint --edit",
"test": "vitest",
"prepare": "node .husky/install.mjs"
Expand Down

0 comments on commit 2db2c8c

Please sign in to comment.