Last active
July 3, 2019 18:30
-
-
Save sghiassy/e14593a439a03028b98a to your computer and use it in GitHub Desktop.
My default .gitignore file
This file contains 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
# Gist at: https://gist.github.com/sghiassy/e14593a439a03028b98a | |
##### OSX | |
.DS_Store | |
##### Xcode | |
build/ | |
*.pbxuser | |
!default.pbxuser | |
*.mode1v3 | |
!default.mode1v3 | |
*.mode2v3 | |
!default.mode2v3 | |
*.perspectivev3 | |
!default.perspectivev3 | |
xcuserdata | |
*.xccheckout | |
*.moved-aside | |
DerivedData | |
*.hmap | |
*.ipa | |
*.xcuserstate | |
project.xcworkspace | |
#### Fastlane | |
fastlane/report.xml | |
fastlane/test_output/* | |
##### node.js | |
node_modules | |
jspm_packages | |
npm-debug.log | |
yarn-error.log | |
##### Code Editor Settings | |
.idea/ | |
.vscode/ | |
##### Java/Android | |
.classpath | |
.externalNativeBuild | |
.gradle | |
.project | |
*.class | |
*.iml | |
/.idea/libraries | |
/.idea/workspace.xml | |
/.settings/ | |
/bin/ | |
/build | |
/captures | |
/local.properties | |
*.jar | |
*.war | |
*.ear | |
#### Selenium | |
selenium-debug.log | |
test/reports/* | |
test/screenshots/* | |
### Serverless | |
.serverless | |
# Carthage | |
framework/Carthage | |
# Natrium | |
ios/Example/Pods/Natrium/bin/natrium.log | |
ios/Example/Pods/Natrium/bin/natrium.lock | |
### Webpack | |
.webpack |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment