Skip to content

Commit

Permalink
chore: remove prettylint
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Jul 30, 2020
1 parent 63efc95 commit 95a800d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 253 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:
run: |
yarn
yarn add --dev eslint@${{matrix.eslint-version }}
- name: run prettylint
run: yarn prettylint
- name: run prettier
run: yarn prettier:check
- name: run typecheck
run: yarn typecheck
- name: run tests
Expand All @@ -62,8 +62,8 @@ jobs:
node-version: 12.x
- name: install
run: yarn
- name: run prettylint
run: yarn prettylint
- name: run prettier
run: yarn prettier:check
- name: run typecheck
run: yarn typecheck
- name: run tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
node-version: '12.x'
- name: install
run: yarn
- name: run prettylint
run: yarn prettylint
- name: run prettier
run: yarn prettier:check
- name: run typecheck
run: yarn typecheck
- name: run tests
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"postbuild": "rimraf lib/__tests__ lib/**/__tests__",
"lint": "eslint . --ignore-pattern '!.eslintrc.js' --ext js,ts",
"prepack": "yarn build",
"prettylint": "prettylint docs/**/*.md README.md package.json",
"prettier:check": "prettier --check docs/**/*.md README.md package.json tsconfig.json src/globals.json",
"prettier:write": "prettier --write docs/**/*.md README.md package.json tsconfig.json src/globals.json",
"test": "jest",
"tools:regenerate-docs": "ts-node -T tools/regenerate-docs",
"typecheck": "tsc -p ."
Expand Down Expand Up @@ -121,7 +122,6 @@
"jest-runner-eslint": "^0.10.0",
"lint-staged": "^9.4.2",
"prettier": "^1.19.1",
"prettylint": "^1.0.0",
"resolve-from": "^5.0.0",
"rimraf": "^3.0.0",
"semantic-release": "^15.13.28",
Expand Down

0 comments on commit 95a800d

Please sign in to comment.