- Does the code work?
- Description of the project status is included.
- Code is easily understand.
- Code is written following the coding standarts/guidelines (React in our case).
- Code is in sync with existing code patterns/technologies.
- DRY. Is the same code duplicated more than twice?
See how a minor change to your commit message style can make a difference. Examples
Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs
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
| import os | |
| import re | |
| images = os.listdir('./') | |
| for image in images: | |
| image_copy = image | |
| x = re.findall("\d", image_copy) | |
| new_name = ''.join(x) + '.jpg' | |
| try: | |
| os.rename(image, new_name) |
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
| # react native git ignore file | |
| # OSX | |
| # | |
| .DS_Store | |
| # Xcode | |
| # | |
| build/ | |
| *.pbxuser | |
| !default.pbxuser |
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
| <ViroPortalScene passable={true}> | |
| <ViroPortal | |
| position={[0,0,-1]} | |
| scale={[0.1,0.1,0.1]} | |
| > | |
| { | |
| // ViroPortal to Create window or door | |
| } | |
| <Viro3DObject | |
| source={your_source} |