[prettier] Remove json from .prettierignore

This commit is contained in:
Sergey Konovalov
2025-08-29 11:18:38 +03:00
parent 731a57e9b1
commit 213471175c
3 changed files with 16 additions and 7 deletions

View File

@ -23,12 +23,12 @@
"prettier": "3.4.2"
},
"scripts": {
"lint": "eslint .",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:fix": "prettier . --write",
"format:check": "prettier . --check",
"code:check": "run-s lint format:check",
"code:fix": "run-s lint:fix format",
"code:check": "run-s lint:check format:check",
"code:fix": "run-s lint:fix format:fix",
"prepare": "husky",
"perf-expired": "cd ./DocService&& cross-env NODE_ENV=development-windows NODE_CONFIG_DIR=../Common/config node ../tests/perf/checkFileExpire.js",
"perf-exif": "cd ./DocService&& cross-env NODE_ENV=development-windows NODE_CONFIG_DIR=../Common/config node ../tests/perf/fixImageExifRotation.js",