-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
18 lines (18 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"private": true,
"scripts": {
"check-trailing-whitespaces": "node ci/check-trailing-whitespaces.js",
"check-words-list": "node ci/check-words-list.js",
"check-update-docs": "(ci/generate-docs.sh > /dev/null && git diff --quiet .) || (>&2 echo 'To fix the issue run ci/generate-docs.sh and commit changes' && exit 1)",
"check-spelling": "cspell --no-progress '**/**'",
"check-markdown": "markdownlint --ignore 'node_modules/' '**/*.md'",
"check-terraform": "tflint --recursive",
"check-terrafrom-formatting": "terraform fmt --recursive --check",
"check-helm-chart": "helm lint modules/adot-amp/adot-collector-helm-chart --quiet",
"check-all": "npm run check-terrafrom-formatting && npm run check-terraform && npm run check-helm-chart && npm run check-trailing-whitespaces && npm run check-words-list && npm run check-update-docs && npm run check-spelling && npm run check-markdown"
},
"devDependencies": {
"cspell": "^6.31.1",
"markdownlint-cli": "^0.33.0"
}
}