-
Notifications
You must be signed in to change notification settings - Fork 22
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
[GSoD 2021] Formatted actions and .vscode files using prettier #142
Conversation
Signed-off-by: Rajiv Ranjan Singh <[email protected]>
Signed-off-by: Rajiv Ranjan Singh <[email protected]>
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.
Pass CI tests so that we can continue reviewing
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.
Refactoring looks good to me
By the way, @iamrajiv, why you used prettier when modern IDEs could have just done in a single click? on a side note to perform this formatting you just need to press command + shift + L in jet brains IDEs |
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.
Thanks for enforcing the format to prettier, I believe it's good to have a consistent format across all the json/YAML files.
However, I'd like to keep the following two styles:
- Array should be one item per line:
- branches: [master] + branches: + - master
- Keep the trailing comma
- "typescript" + "typescript", ],
Please change your PR to keep the above two styles, and resolve the conflicts before we can continue reviewing it.
Thank you very much!
Signed-off-by: Rajiv Ranjan Singh <[email protected]>
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.
Thanks for the update!
Please see my comments and let me know what you think.
Signed-off-by: Rajiv Ranjan Singh <[email protected]>
Signed-off-by: Rajiv Ranjan Singh <[email protected]>
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.
All the YAML file permissions should be 0644.
100644 → 100755
Related: wechaty/docusaurus#1012