- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
Latest commit
20 lines (20 loc) · 464 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 464 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"scripts": {
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@prettier/plugin-php": "^0.22.2",
"clang-format": "1.8.0",
"husky": "^9.0.1",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"prettier-plugin-sql-cst": "^0.11.5"
},
"lint-staged": {
"*.{js,ts,php,sql,md}": "prettier --write",
"*.py": "black -S",
"*.rs": "rustfmt"
}
}