forked from open-telemetry/semantic-conventions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 777 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"scripts": {
"_check:format": "npx prettier --check .",
"_check:format:any": "npx prettier --check --ignore-path ''",
"check": "make check",
"check:format": "npm run _check:format || (echo '[help] Run: npm run format'; exit 1)",
"fix": "make fix",
"fix:format": "npm run _check:format -- --write",
"test": "npm run check"
},
"devDependencies": {
"markdown-link-check": "3.11.2",
"markdown-toc": "^1.2.0",
"markdownlint-cli": "0.43.0",
"prettier": "^3.0.0"
},
"prettier": {
"proseWrap": "preserve",
"overrides": [
{
"files": [
"**/non-normative/groups/system/**/*.md"
],
"options": {
"printWidth": 80,
"proseWrap": "always"
}
}
]
}
}