From ce752e19127409a59bd8bd3a01e3b0e072932066 Mon Sep 17 00:00:00 2001 From: Benjamin Rosemann Date: Tue, 10 Nov 2020 12:45:13 +0100 Subject: [PATCH] Remove .idea folder and modify .gitignore Sharing even parts of the .idea folder in worldwide setting is bound to generate more problems than solutions. Therefore it should be removed and consequently ignore in .gitignore. Also adds some Python specific stuff to the .gitignore file. --- .gitignore | 33 ++++++++++--------- .idea/codeStyles/codeStyleConfig.xml | 5 --- .idea/dinglehopper.iml | 11 ------- .../inspectionProfiles/profiles_settings.xml | 6 ---- .idea/misc.xml | 4 --- .idea/modules.xml | 8 ----- .idea/vcs.xml | 6 ---- qurator/dinglehopper/.gitignore | 6 ---- qurator/dinglehopper/.idea/dinglehopper.iml | 12 ------- qurator/dinglehopper/.idea/misc.xml | 7 ---- qurator/dinglehopper/.idea/modules.xml | 8 ----- 11 files changed, 17 insertions(+), 89 deletions(-) delete mode 100644 .idea/codeStyles/codeStyleConfig.xml delete mode 100644 .idea/dinglehopper.iml delete mode 100644 .idea/inspectionProfiles/profiles_settings.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml delete mode 100644 qurator/dinglehopper/.gitignore delete mode 100644 qurator/dinglehopper/.idea/dinglehopper.iml delete mode 100644 qurator/dinglehopper/.idea/misc.xml delete mode 100644 qurator/dinglehopper/.idea/modules.xml diff --git a/.gitignore b/.gitignore index 3d3a74a..756850f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,25 +1,26 @@ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] +*$py.class # Distribution / packaging *.egg-info/ -# User-specific stuff -.idea/**/workspace.xml -.idea/**/tasks.xml -.idea/**/usage.statistics.xml -.idea/**/dictionaries -.idea/**/shelf +# Unit test / coverage reports +htmlcov/ +.coverage +.coverage.* + +# Environments +.env +.venv +env/ +venv/ -# Generated files -.idea/**/contentModel.xml +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json -# 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 +# User-specific stuff +.idea diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml deleted file mode 100644 index a55e7a1..0000000 --- a/.idea/codeStyles/codeStyleConfig.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/dinglehopper.iml b/.idea/dinglehopper.iml deleted file mode 100644 index 0f3d9e5..0000000 --- a/.idea/dinglehopper.iml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml deleted file mode 100644 index 105ce2d..0000000 --- a/.idea/inspectionProfiles/profiles_settings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 88565d3..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 6035afb..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/qurator/dinglehopper/.gitignore b/qurator/dinglehopper/.gitignore deleted file mode 100644 index e70d1f9..0000000 --- a/qurator/dinglehopper/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -# User-specific stuff -.idea/**/workspace.xml -.idea/**/tasks.xml -.idea/**/usage.statistics.xml -.idea/**/dictionaries -.idea/**/shelf diff --git a/qurator/dinglehopper/.idea/dinglehopper.iml b/qurator/dinglehopper/.idea/dinglehopper.iml deleted file mode 100644 index e273926..0000000 --- a/qurator/dinglehopper/.idea/dinglehopper.iml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/qurator/dinglehopper/.idea/misc.xml b/qurator/dinglehopper/.idea/misc.xml deleted file mode 100644 index ba209a1..0000000 --- a/qurator/dinglehopper/.idea/misc.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/qurator/dinglehopper/.idea/modules.xml b/qurator/dinglehopper/.idea/modules.xml deleted file mode 100644 index 6035afb..0000000 --- a/qurator/dinglehopper/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file