-
Notifications
You must be signed in to change notification settings - Fork 11
max line length 100 #295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
max line length 100 #295
Conversation
6253ea5 to
1d85619
Compare
e64e8f5 to
9892697
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR enforces a maximum line length of 100 characters instead of PSR-12's default 120 characters across the PHP codebase. The changes involve refactoring long lines by breaking them into multiple lines with proper indentation while maintaining code functionality.
Key changes:
- Configuration update to enforce 100-character line limit via custom PHP_CodeSniffer ruleset
- Systematic refactoring of long lines across multiple PHP files using appropriate line breaks
- Documentation update to reflect the new line length requirement
Reviewed Changes
Copilot reviewed 30 out of 31 changed files in this pull request and generated 5 comments.
| File | Description |
|---|---|
| .phpcs-ruleset.xml | New custom ruleset defining 100-character line limit |
| .pre-commit-config.yaml | Updated to use custom ruleset instead of PSR12 |
| CONTRIBUTING.md | Added documentation about 100-character line limit |
| Multiple PHP files | Refactored long lines to comply with 100-character limit |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
No description provided.