mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-10 05:59:18 +01:00
109 lines
2 KiB
Text
109 lines
2 KiB
Text
# Created by https://www.toptal.com/developers/gitignore/api/gradle,java,intellij+all
|
|
# Edit at https://www.toptal.com/developers/gitignore?templates=gradle,java,intellij+all
|
|
|
|
### Intellij+all ###
|
|
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
|
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
|
|
# User-specific stuff
|
|
.idea
|
|
|
|
# CMake
|
|
cmake-build-*/
|
|
|
|
# Mongo Explorer plugin
|
|
.idea/**/mongoSettings.xml
|
|
|
|
# File-based project format
|
|
*.iws
|
|
|
|
# IntelliJ
|
|
out/
|
|
|
|
# mpeltonen/sbt-idea plugin
|
|
.idea_modules/
|
|
|
|
# JIRA plugin
|
|
atlassian-ide-plugin.xml
|
|
|
|
# Cursive Clojure plugin
|
|
.idea/replstate.xml
|
|
|
|
# SonarLint plugin
|
|
.idea/sonarlint/
|
|
|
|
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
com_crashlytics_export_strings.xml
|
|
crashlytics.properties
|
|
crashlytics-build.properties
|
|
fabric.properties
|
|
|
|
# Editor-based Rest Client
|
|
.idea/httpRequests
|
|
|
|
# Android studio 3.1+ serialized cache file
|
|
.idea/caches/build_file_checksums.ser
|
|
|
|
### Intellij+all Patch ###
|
|
# Ignore everything but code style settings and run configurations
|
|
# that are supposed to be shared within teams.
|
|
|
|
.idea/*
|
|
|
|
!.idea/codeStyles
|
|
!.idea/runConfigurations
|
|
|
|
### Java ###
|
|
# Compiled class file
|
|
*.class
|
|
|
|
# Log file
|
|
*.log
|
|
|
|
# BlueJ files
|
|
*.ctxt
|
|
|
|
# Mobile Tools for Java (J2ME)
|
|
.mtj.tmp/
|
|
|
|
# Package Files #
|
|
*.jar
|
|
*.war
|
|
*.nar
|
|
*.ear
|
|
*.zip
|
|
*.tar.gz
|
|
*.rar
|
|
|
|
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
|
hs_err_pid*
|
|
replay_pid*
|
|
|
|
### Gradle ###
|
|
.gradle
|
|
**/build/
|
|
!src/**/build/
|
|
|
|
# Ignore Gradle GUI config
|
|
gradle-app.setting
|
|
|
|
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
|
|
!gradle-wrapper.jar
|
|
|
|
# Avoid ignore Gradle wrappper properties
|
|
!gradle-wrapper.properties
|
|
|
|
# Cache of project
|
|
.gradletasknamecache
|
|
|
|
# Eclipse Gradle plugin generated files
|
|
# Eclipse Core
|
|
.project
|
|
# JDT-specific (Eclipse Java Development Tools)
|
|
.classpath
|
|
|
|
### Gradle Patch ###
|
|
# Java heap dump
|
|
*.hprof
|
|
|
|
# End of https://www.toptal.com/developers/gitignore/api/gradle,java,intellij+all
|