-
Notifications
You must be signed in to change notification settings - Fork 0
🪲 [Fix]: Fix linter settings and docs #25
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
base: main
Are you sure you want to change the base?
Conversation
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 fixes linter settings by disabling various linting and formatting validations in the PSModule configuration file.
- Adds a new
Linter
section to disable multiple validation tools including Biome, Zizmor, JSCPD, and Prettier formatters
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
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
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
MD029: false # Ordered list item prefix | ||
MD033: false # Allow inline HTML | ||
MD036: false # Emphasis used instead of a heading | ||
punctuation: '.,;:!。,;:' # List of not allowed |
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.
The punctuation string contains a duplicate colon character. The string has both ASCII colon ':' and what appears to be a duplicate or different colon character at the end, which could cause unexpected linting behavior.
punctuation: '.,;:!。,;:' # List of not allowed | |
punctuation: '.,;:!。,;' # List of not allowed |
Copilot uses AI. Check for mistakes.
Fix linter settings and docs