From ccc980855e690acce7052459b6933c12eb8520b2 Mon Sep 17 00:00:00 2001
From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com>
Date: Fri, 8 Nov 2019 18:33:01 -0800
Subject: [PATCH] Add Julia stuff to gitignore
---
.gitignore | 30 ++++++-
.idea/dictionaries/cclea.xml | 9 ++
.idea/workspace.xml | 167 +++++++++++++++++++++++++++++++++++
Julia/install.jl | 3 +
4 files changed, 208 insertions(+), 1 deletion(-)
create mode 100644 .idea/dictionaries/cclea.xml
create mode 100644 .idea/workspace.xml
create mode 100644 Julia/install.jl
diff --git a/.gitignore b/.gitignore
index 6d5306c..2ed722b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -201,4 +201,32 @@ dmypy.json
# Ignore results files
Results.txt
-results.txt
\ No newline at end of file
+results.txt
+
+### Julia.gitignore
+# (https://github.com/github/gitignore/blob/master/Julia.gitignore)
+
+# Files generated by invoking Julia with --code-coverage
+*.jl.cov
+*.jl.*.cov
+
+# Files generated by invoking Julia with --track-allocation
+*.jl.mem
+
+# System-specific files and directories generated by the BinaryProvider and BinDeps packages
+# They contain absolute paths specific to the host computer, and so should not be committed
+deps/deps.jl
+deps/build.log
+deps/downloads/
+deps/usr/
+deps/src/
+
+# Build artifacts for creating documentation generated by the Documenter package
+docs/build/
+docs/site/
+
+# File generated by Pkg, the package manager, based on a corresponding Project.toml
+# It records a fixed state of all packages used by the project. As such, it should not be
+# committed for packages, but should be committed for applications that require a static
+# environment.
+Manifest.toml
\ No newline at end of file
diff --git a/.idea/dictionaries/cclea.xml b/.idea/dictionaries/cclea.xml
new file mode 100644
index 0000000..8c49cbc
--- /dev/null
+++ b/.idea/dictionaries/cclea.xml
@@ -0,0 +1,9 @@
+
+
+
+ beefblup
+ blup
+ matlab
+
+
+
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
new file mode 100644
index 0000000..bbe788f
--- /dev/null
+++ b/.idea/workspace.xml
@@ -0,0 +1,167 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Julia/install.jl b/Julia/install.jl
new file mode 100644
index 0000000..396cdc4
--- /dev/null
+++ b/Julia/install.jl
@@ -0,0 +1,3 @@
+
+using Pkg
+Pkg.add("XLSXReader")
\ No newline at end of file