Skip to content

Commit

Permalink
refactor(scripts): move lint to own namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
negezor committed Dec 14, 2021
1 parent c1c0325 commit 9cfe76b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@
"clean": "rm -rf ./packages/*/lib",
"rollup:build": "NODE_ENV=production rollup -c rollup.config.js",
"rollup:watch": "yarn run rollup:build -w",
"test": "yarn run test:jest && yarn run test:eslint",
"test": "yarn run test:jest && yarn run lint",
"test:jest": "jest --config jest.config.json --no-cache",
"test:eslint": "eslint --ext .ts --ignore-path .gitignore packages/*/src/**/*.ts"
"lint": "yarn run lint:eslint",
"lint:eslint": "eslint --ext .ts --ignore-path .gitignore packages/*/src/**/*.ts"
}
}

0 comments on commit 9cfe76b

Please sign in to comment.