Skip to content

Commit

Permalink
Merge pull request #86 from Nautilus-Cyberneering/issue-57-simplify-e…
Browse files Browse the repository at this point in the history
…slint-matchers

Simplify linting target specification
  • Loading branch information
josecelano authored Mar 16, 2022
2 parents 0079b6e + c18fda7 commit b413d52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint --fix **src/*.ts; eslint --fix **src/**/*.ts; eslint --fix __tests__/**/*.ts",
"lint-check": "eslint **src/*.ts; eslint **src/**/*.ts; eslint __tests__/**/*.ts",
"lint": "eslint --fix '@(src|__tests__)/**/*.ts'",
"lint-check": "eslint '@(src|__tests__)/**/*.ts'",
"package": "ncc build --source-map --license licenses.txt",
"test": "yarn build && jest --coverage",
"test-unit": "jest --coverage --testPathPattern __tests__/unit/[a-z-]+.test.ts",
Expand Down

0 comments on commit b413d52

Please sign in to comment.