Skip to content

Commit efcdd24

Browse files
committed
Enable prettier on all files
1 parent 97b3ba8 commit efcdd24

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.prettierignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
/dist
22
/coverage
33
/test/translation/transformation/characterEscapeSequence.ts
4-
5-
/src
6-
*.md

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
"pretest": "npm run lint && ts-node --transpile-only ./build_lualib.ts",
2424
"test": "jest",
2525
"lint": "npm run lint:tslint && npm run lint:prettier",
26-
"lint:prettier": "prettier --check **/*.{js,ts,yml,json} || (echo 'Run `npm run fix:prettier` to fix it.' && exit 1)",
26+
"lint:prettier": "prettier --check **/*.{js,ts,yml,json,md} || (echo 'Run `npm run fix:prettier` to fix it.' && exit 1)",
2727
"lint:tslint": "tslint -p . && tslint -p test && tslint -p src/lualib",
28-
"fix:prettier": "prettier --check --write **/*.{js,ts,yml,json}",
28+
"fix:prettier": "prettier --check --write **/*.{js,ts,yml,json,md}",
2929
"release-major": "npm version major",
3030
"release-minor": "npm version minor",
3131
"release-patch": "npm version patch",

0 commit comments

Comments
 (0)