- .markdownlint.json: enforce MD004 asterisk style to match project conventions
- .wiki/Contributing.md: convert all dash list markers to asterisks (MD004)
- .wiki/Coding-Standards.md: fix PHPDoc bullet wording (add missing preposition)
- build.sh: add set -euo pipefail for strict error handling
- build.sh: fix SC2115 (use ${var:?} to prevent rm -rf /)
- build.sh: fix SC2164 (cd build || exit 1)
- build.sh: fix SC2028 (use printf instead of echo for escape sequences)
- build.sh: fix SC2035 (use ./*.php glob to avoid dash-named files)
Closes #46
19 lines
264 B
JSON
19 lines
264 B
JSON
{
|
|
"MD004": {
|
|
"style": "asterisk"
|
|
},
|
|
"MD012": false,
|
|
"MD022": false,
|
|
"MD031": false,
|
|
"MD032": false,
|
|
"MD013": {
|
|
"line_length": 120,
|
|
"code_blocks": false
|
|
},
|
|
"MD024": {
|
|
"siblings_only": true
|
|
},
|
|
"MD040": false,
|
|
"MD041": false
|
|
}
|