-
Notifications
You must be signed in to change notification settings - Fork 661
chore: add formatting with prettier #1946
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
maribethb
merged 19 commits into
RaspberryPiFoundation:master
from
maribethb:eslint-flat
Oct 26, 2023
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
88837d9
chore: remove eslintConfig from plugin packages
maribethb b5830cd
chore: switch to eslint flat config
maribethb c8b4810
chore: add prettier
maribethb 93b1e0d
chore: convert eslint config to cjs
maribethb a6cf040
chore: temporarily disable tag-lines rule in ts
maribethb a042bd7
chore: update prettier ignore
maribethb 93aac8c
chore: manually fix lint errors
maribethb 71b0c51
chore: remove blockly-scripts lint
maribethb af49e71
chore: do not lint from webpack
maribethb b0cfa4a
chore: un-remove blockly-scripts lint
maribethb 5a9bd7d
deprecate: add warning to blockly-scripts lint
maribethb a4af80a
chore: update copyright date
maribethb 4bbcb85
fix: no autofix missing jsdoc
maribethb c97e2de
chore: update package lock after merge conflicts
maribethb 245cbd3
fix: update lint fix command
maribethb 0b4abfa
fix: autofix lint problems
maribethb f551687
chore: format everything
maribethb a25f77b
fix: ignore sample app files in dev-create
maribethb 4a57346
chore: package lock shenanigans
maribethb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
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
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
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
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 |
|---|---|---|
|
|
@@ -3,7 +3,7 @@ | |
|
|
||
| name: Check examples install status | ||
|
|
||
| on: | ||
| on: | ||
| pull_request: | ||
| paths: | ||
| - 'examples/**' | ||
|
|
||
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
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
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
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,18 @@ | ||
| # All examples, codelabs, etc. | ||
| examples/* | ||
| node_modules/* | ||
| codelabs/* | ||
| gh-pages/* | ||
|
|
||
| # All build artifacts, etc. | ||
| **/dist/* | ||
| **/build/* | ||
| **/node_modules/* | ||
| **/CHANGELOG.md | ||
| CHANGELOG.md | ||
| PULL_REQUEST_TEMPLATE.md | ||
|
|
||
| # Specific examples that are sometimes copied into plugins | ||
| plugins/dev-create/templates/sample-app/* | ||
| plugins/dev-create/templates/sample-app-ts/* | ||
|
|
||
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,13 @@ | ||
| // This config attempts to match google-style code. | ||
|
|
||
| module.exports = { | ||
| // Prefer single quotes, but minimize escaping. | ||
| singleQuote: true, | ||
| // Some properties must be quoted to preserve closure compiler behavior. | ||
| // Don't ever change whether properties are quoted. | ||
| quoteProps: 'preserve', | ||
BeksOmega marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| // Don't add spaces around braces for object literals. | ||
| bracketSpacing: false, | ||
| // Put HTML tag closing brackets on same line as last attribute. | ||
| bracketSameLine: true, | ||
| }; | ||
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.
Uh oh!
There was an error while loading. Please reload this page.