소스 검색

fix: prevent infinite loop in linting script

Tom French 4 년 전
부모
커밋
8be6bae664
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      package.json

+ 1 - 1
package.json

@@ -62,7 +62,7 @@
     "commit": "git-cz",
     "compile": "buidler compile",
     "coverage": "buidler coverage --solcoverjs ./.solcover.js --network coverage --temp artifacts --testfiles \"./test/**/*.ts\"",
-    "lint": "yarn lint lint:sol && yarn run lint:ts && yarn run prettier:list-different",
+    "lint": "yarn lint:sol && yarn run lint:ts && yarn run prettier:list-different",
     "lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
     "lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
     "prettier": "prettier --config .prettierrc --write \"**/*.{js,json,md,sol,ts}\"",