Fix bin/publish: copy docs.dist from project root

Fix bin/publish: use correct .env path for rspade_system
Fix bin/publish script: prevent grep exit code 1 from terminating script

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-10-21 02:08:33 +00:00
commit f6fac6c4bc
79758 changed files with 10547827 additions and 0 deletions

40
pint.json Executable file
View File

@@ -0,0 +1,40 @@
{
"preset": "laravel",
"rules": {
"line_ending": true,
"method_chaining_indentation": true,
"no_unused_imports": true,
"ordered_imports": {
"sort_algorithm": "alpha"
},
"single_quote": true,
"trailing_comma_in_multiline": {
"elements": ["arrays", "arguments", "parameters"]
},
"binary_operator_spaces": {
"default": "single_space"
},
"blank_line_before_statement": {
"statements": ["return", "try", "if", "foreach", "for", "while"]
},
"concat_space": {
"spacing": "one"
},
"declare_strict_types": false,
"not_operator_with_successor_space": false,
"phpdoc_line_span": {
"const": "single",
"property": "single",
"method": "multi"
}
},
"exclude": [
"vendor",
"node_modules",
"storage",
"bootstrap/cache"
],
"notPath": [
"app/RSpade/Scripts/Parsers"
]
}