From d8a7f5aa854e09826ac8bbe7432fa20be3767bf3 Mon Sep 17 00:00:00 2001 From: SammyIsConfused Date: Wed, 16 Jan 2019 17:09:06 +1100 Subject: [PATCH] Change .gitignore to include parts of .idea folder (#710) * Change .gitignore to include parts of .idea folder * Moved to .idea folder and remove modules.xml as its sbt that will create that #709 --- .gitignore | 2 +- .idea/.gitignore | 34 +++++++++++++++++++ .idea/codeStyles/Project.xml | 14 ++++++++ .idea/codeStyles/codeStyleConfig.xml | 5 +++ .idea/compiler.xml | 41 +++++++++++++++++++++++ .idea/encodings.xml | 4 +++ .idea/misc.xml | 9 +++++ .idea/sbt.xml | 50 ++++++++++++++++++++++++++++ .idea/typescript-compiler.xml | 6 ++++ 9 files changed, 164 insertions(+), 1 deletion(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/codeStyles/Project.xml create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/sbt.xml create mode 100644 .idea/typescript-compiler.xml diff --git a/.gitignore b/.gitignore index 488b38628c..1120564b7a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ *.pyc *.pmd *.iml -.idea + target/ build.conf generated.keystore diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000000..aad594658d --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,34 @@ +### Intellij ### +## https://intellij-support.jetbrains.com/hc/en-us/articles/206544839-How-to-manage-projects-under-Version-Control-Systems + +/artifacts/ +/httpRequests/ + +# User-specific stuff: +/workspace.xml +/tasks.xml +/dictionaries +/vcs.xml +/jsLibraryMappings.xml + +# Sensitive or high-churn files: +/dataSources.ids +/dataSources.xml +/dataSources.local.xml +/dataSources/ +/sqlDataSources.xml +/dynamic.xml +/uiDesigner.xml + +## And seeing SBT projects also regenerates .iml module files +## lets ignore them all: +/modules/ +/modules.xml + +/libraries/ +/sonarlint/ +/scala_compiler.xml +/hydra.xml +/inspectionProfiles/Project_Default.xml + +### Intellij - END ### diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 0000000000..a0f56d16df --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000000..79ee123c2b --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000000..2cfc0682b0 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000000..15a15b218a --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000000..7cc891e377 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/sbt.xml b/.idea/sbt.xml new file mode 100644 index 0000000000..027b46dd70 --- /dev/null +++ b/.idea/sbt.xml @@ -0,0 +1,50 @@ + + + + + + \ No newline at end of file diff --git a/.idea/typescript-compiler.xml b/.idea/typescript-compiler.xml new file mode 100644 index 0000000000..1a2fb332ee --- /dev/null +++ b/.idea/typescript-compiler.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file