forked from os2loop/os2loop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
16 lines (16 loc) · 1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"markdownlint-cli": "^0.26.0",
"prettier": "^2.2.1"
},
"scripts": {
"coding-standards-check/markdownlint": "markdownlint README.md 'docs/**/*.md' 'web/profiles/custom/os2loop/**/*.md' --ignore 'web/profiles/custom/os2loop/**/node_modules/**/*.md'",
"coding-standards-check/prettier": "prettier --check 'web/profiles/custom/os2loop/themes/os2loop_theme/assets/**/*.{js,scss}'",
"coding-standards-check": "yarn coding-standards-check/markdownlint && yarn coding-standards-check/prettier",
"coding-standards-apply/markdownlint": "markdownlint --fix README.md 'docs/**/*.md' 'web/profiles/custom/os2loop/**/*.md' --ignore 'web/profiles/custom/os2loop/**/node_modules/**/*.md'",
"coding-standards-apply/prettier": "prettier --write 'web/profiles/custom/os2loop/themes/os2loop_theme/assets/**/*.{js,scss}'",
"coding-standards-apply": "yarn coding-standards-apply/markdownlint && yarn coding-standards-apply/prettier"
}
}