Skip to content

Commit

Permalink
add .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
uerceg committed Sep 6, 2020
1 parent fe44427 commit 4b1fbb0
Showing 1 changed file with 108 additions and 0 deletions.
108 changes: 108 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
# OS X
.DS_Store

# Xcode
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
profile
*.moved-aside
DerivedData
*.hmap
*.ipa

# CocoaPods
Pods

# git files
*.orig
# Copyright: Benjamin Weiss (keyboardsurfer) https://github.com/keyboardsurfer
# Under CC-BY-SA V3.0 (https://creativecommons.org/licenses/by-sa/3.0/legalcode)

# orig files
*.orig

# built application files
*.apk
*.ap_

# lint folder
lint

# files for the dex VM
*.dex

# Java class files
*.class

# generated files
bin/
gen/
classes/
gen-external-apklibs/

# maven output folder
target

# Local configuration file (sdk path, etc)
local.properties

# Eclipse project files
.classpath
.project
.metadata
.settings

# IntelliJ files
.idea
*.iml

# OSX files
.DS_Store

# Windows files
Thumbs.db

# vi swap files
*.swp

# backup files
*.bak

# gradle directory
.gradle
.gradletasknamecache
gradlew
gradlew.bat
gradle/
build/

# for oh-my-zsh jira plugin (https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins#jira)
.jira-url
atlassian-ide-plugin.xml

# exceptions
!*adjust-android.jar

# Cordova example app
sample/plugins/*
sample/platforms/*

!sample/plugins/fetch.json
!sample/platforms/platforms.json
temp_plugin/
example-cordova/node_modules
example-cordova/platforms
example-cordova/plugins
test/app/node_modules
test/app/platforms
test/app/plugins
*.pyc

0 comments on commit 4b1fbb0

Please sign in to comment.