Skip to content

Cleanup pass #959

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

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
203 changes: 106 additions & 97 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,114 +1,123 @@
.DS_Store
.AppleDouble
._*
*~
/build/shared/reference.zip

*.x

#*.iml
#/.idea

# may need to bring this back later
/.idea/codeStyles

# via https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf

# Generated files
.idea/**/contentModel.xml

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml

# Gradle
.idea/**/gradle.xml
.idea/**/libraries

# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/modules.xml
# .idea/*.iml
# .idea/modules

# CMake
cmake-build-*/

# Mongo Explorer plugin
.idea/**/mongoSettings.xml

# File-based project format
*.iws
# Created by https://www.toptal.com/developers/gitignore/api/android,gradle,java
# Edit at https://www.toptal.com/developers/gitignore?templates=android,gradle,java

### Android ###
# Gradle files
.gradle/
build/

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

# Log/OS Files
*.log

# Android Studio generated files and folders
captures/
.externalNativeBuild/
.cxx/
*.apk
output.json

# IntelliJ
out/
*.iml
.idea/*
misc.xml
deploymentTargetDropDown.xml
render.experimental.xml

# mpeltonen/sbt-idea plugin
.idea_modules/
# Keystore files
*.jks
*.keystore

# JIRA plugin
atlassian-ide-plugin.xml
# Google Services (e.g. APIs or Firebase)
google-services.json

# Cursive Clojure plugin
.idea/replstate.xml
# Android Profiling
*.hprof

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
### Android Patch ###
gen-external-apklibs

# Editor-based Rest Client
.idea/httpRequests
# Replacement of .externalNativeBuild directories introduced
# with Android Studio 3.5.

# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser
### Java ###
# Compiled class file
*.class

# temporarily ignore IntelliJ bits
*.eml
# Log file

# testing boogers
bin-test
# BlueJ files
*.ctxt

# dated folders
/19*
/20*
# Mobile Tools for Java (J2ME)
.mtj.tmp/

# VS Code Java project files
.project
.vscode/
# Package Files #
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# Processing examples
processing-examples
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*

# Maven ignores
### Gradle ###
.gradle
core/build/
build/publish/
app/build
java/build/
/build/reports
/java/bin
/java/libraries/svg/bin
/java/preprocessor/build
/java/lsp/build
/.kotlin/sessions
/core/examples/build
**/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

# End of https://www.toptal.com/developers/gitignore/api/android,gradle,java
.DS_Store
bin/*
.build/
.processing/
library/*
generated/
!/build/
!.idea/runConfigurations/
!/java/application/launch4j/bin/*
!java/libraries/io/library/**/*.so
/app/lib
/build/macos/work/Processing.app
/core/library
/core/bin
/build/shared/tools/MovieMaker/tool/ffmpeg
/build/shared/tools/MovieMaker/tool/*.jar
/core/methods/methods.jar
/java/libraries/*/library/*.jar
/build/macos/*.tgz
/build/shared/tools/MovieMaker/*.gz
/app/bin/processing/app/laf/FlatLaf.properties
/app/pde.jar
/java/mode/gson.jar
/java/mode/JavaMode.jar
/java/mode/org.eclipse.lsp4j.jar
/java/mode/org.eclipse.lsp4j.jsonrpc.jar
!java/libraries/pdf/library/itext.jar
!java/libraries/serial/library/jssc.jar
3 changes: 0 additions & 3 deletions .idea/.gitignore

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/ant.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/artifacts/app_desktop.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/artifacts/app_jvm.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/compiler.xml

This file was deleted.

41 changes: 0 additions & 41 deletions .idea/inspectionProfiles/Project_Default.xml

This file was deleted.

30 changes: 0 additions & 30 deletions .idea/jarRepositories.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/kotlinc.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/misc.xml

This file was deleted.

15 changes: 0 additions & 15 deletions .idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

Loading