-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add Prettier integration (config only) #207
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
14 commits
Select commit
Hold shift + click to select a range
9211aa6
feat: add website assets from PR #169
d-ulker 373da35
fix: replace HTML redirect favicon.ico with proper binary icon file
d-ulker 97a6f63
fix: update HTML to use modular CSS structure
d-ulker ad48b66
fix: address code review issues in comprehensive-demo.css
d-ulker bdd5d57
feat: add core CSS architecture files
d-ulker b228a9e
feat: add UI component CSS files
d-ulker 6095624
feat: add layout and interactive component CSS files
d-ulker 1b8466f
feat: add final component CSS files and documentation
d-ulker 3ba8ed0
feat: merge website assets with code review fixes
d-ulker ec81042
Merge branch 'main' of github.com:uelkerd/SAMO--DL
d-ulker ddf603f
Merge branch 'main' of github.com:uelkerd/SAMO--DL
d-ulker b3a46e5
Merge branch 'main' of github.com:uelkerd/SAMO--DL
d-ulker f18f155
feat: add Prettier integration without formatting existing files
d-ulker 2de7c34
Resolve merge conflict: combine Prettier and test infrastructure
d-ulker 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
Some comments aren't visible on the classic Files Changed page.
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,8 @@ | ||
| { | ||
| "semi": true, | ||
| "trailingComma": "es5", | ||
| "singleQuote": true, | ||
| "printWidth": 80, | ||
| "tabWidth": 2, | ||
| "useTabs": false | ||
| } |
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.
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.
The Prettier scripts are currently targeting
.which will attempt to format every file in the directory. While Prettier ignores some files by default (likenode_modules), this is very broad and could format unintended files in the future (e.g., build artifacts, logs). It's better practice to use a more specific glob pattern to target only the files you intend to format.