-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add Prettier formatter config (#677) #730
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
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| --- | ||
| name: Configuration / Environment | ||
| about: Issues related to configuration, environment variables, or deployment | ||
| title: '[CONFIG] ' | ||
| labels: configuration | ||
| assignees: '' | ||
| --- | ||
|
|
||
| **Type of configuration issue** | ||
| - [ ] Environment variable | ||
| - [ ] Docker configuration | ||
| - [ ] API configuration | ||
| - [ ] Build configuration | ||
| - [ ] Runtime configuration | ||
| - [ ] Other | ||
|
|
||
| **Component** | ||
| Which component is this issue related to? | ||
| - [ ] Backend | ||
| - [ ] Frontend | ||
| - [ ] AI Engine | ||
| - [ ] Database | ||
| - [ ] CI/CD | ||
| - [ ] Other | ||
|
|
||
| **Describe the issue** | ||
| A clear and concise description of the configuration issue. | ||
|
|
||
| **Environment details** | ||
| - OS: [e.g. Ubuntu 22.04] | ||
| - Docker version: [e.g. 24.0] | ||
| - Node version: [e.g. 20.x] | ||
| - Python version: [e.g. 3.11] | ||
|
|
||
| **Configuration files** | ||
| List any relevant configuration files: | ||
| ``` | ||
| Config files here | ||
| ``` | ||
|
|
||
| **Steps to reproduce** | ||
| 1. Go to '...' | ||
| 2. Click on '...' | ||
| 3. See error | ||
|
|
||
| **Expected behavior** | ||
| A clear and concise description of what you expected to happen. | ||
|
|
||
| **Additional context** | ||
| Add any other context about the configuration issue here. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| --- | ||
| name: Documentation | ||
| about: Suggest improvements or report issues with the documentation | ||
| title: '[DOCS] ' | ||
| labels: documentation | ||
| assignees: '' | ||
| --- | ||
|
|
||
| **Type of documentation issue** | ||
| - [ ] Typo or grammatical error | ||
| - [ ] Missing information | ||
| - [ ] Outdated information | ||
| - [ ] Unclear explanation | ||
| - [ ] Missing example | ||
| - [ ] Other | ||
|
|
||
| **Page or section** | ||
| Which page or section does this issue relate to? (e.g., "README.md - Installation section") | ||
|
|
||
| **Describe the issue** | ||
| A clear and concise description of what the problem is with the documentation. | ||
|
|
||
| **Suggested improvement** | ||
| If applicable, describe how you would improve the documentation. | ||
|
|
||
| **Additional context** | ||
| Add any other context about the documentation issue here. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| --- | ||
| name: Question | ||
| about: Ask a question or start a discussion about ModPorter AI | ||
| title: '[QUESTION] ' | ||
| labels: question | ||
| assignees: '' | ||
| --- | ||
|
|
||
| **Question** | ||
| What do you want to ask or discuss? | ||
|
|
||
| **Context** | ||
| Provide any context that might help others understand your question. | ||
|
|
||
| **What have you already tried?** | ||
| Describe any steps you've already taken to find the answer. | ||
|
|
||
| **Additional context** | ||
| Add any other context about your question here. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,7 +18,6 @@ | |
| { | ||
| "files": "*.py", | ||
| "options": { | ||
| "parser": "python", | ||
| "tabWidth": 4 | ||
| } | ||
| } | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Prettier does not format Python files without an appropriate plugin/parser; keeping a
*.pyoverride can be confusing andprettierruns over.pyfiles may still fail with 'No parser could be inferred'. Consider either adding a Python Prettier plugin (and the corresponding parser setting) or removing/ignoring*.pyfrom Prettier runs (e.g., via.prettierignoreor limiting CLI globs).