From 2930449f9475384fca0b5c1a0b45674559c4a39a Mon Sep 17 00:00:00 2001 From: Markus Zehnder Date: Sat, 4 Nov 2023 14:15:49 +0100 Subject: [PATCH] build: add shared IntelliJ project settings --- .idea/.gitignore | 8 +++++ .idea/codeStyles/Project.xml | 7 ++++ .idea/codeStyles/codeStyleConfig.xml | 5 +++ .idea/integration-python-library.iml | 14 ++++++++ .idea/misc.xml | 11 ++++++ .idea/modules.xml | 8 +++++ .idea/runConfigurations/Check_Black_style.xml | 34 +++++++++++++++++++ .idea/runConfigurations/Check_flake8.xml | 34 +++++++++++++++++++ .idea/runConfigurations/Check_isort.xml | 34 +++++++++++++++++++ .idea/runConfigurations/Check_pylint.xml | 34 +++++++++++++++++++ .idea/runConfigurations/Run_isort.xml | 34 +++++++++++++++++++ .idea/vcs.xml | 6 ++++ 12 files changed, 229 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/codeStyles/Project.xml create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/integration-python-library.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/runConfigurations/Check_Black_style.xml create mode 100644 .idea/runConfigurations/Check_flake8.xml create mode 100644 .idea/runConfigurations/Check_isort.xml create mode 100644 .idea/runConfigurations/Check_pylint.xml create mode 100644 .idea/runConfigurations/Run_isort.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 0000000..df77493 --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..79ee123 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/integration-python-library.iml b/.idea/integration-python-library.iml new file mode 100644 index 0000000..bbb1500 --- /dev/null +++ b/.idea/integration-python-library.iml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..1e35929 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,11 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..cc371ca --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Check_Black_style.xml b/.idea/runConfigurations/Check_Black_style.xml new file mode 100644 index 0000000..68437b5 --- /dev/null +++ b/.idea/runConfigurations/Check_Black_style.xml @@ -0,0 +1,34 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Check_flake8.xml b/.idea/runConfigurations/Check_flake8.xml new file mode 100644 index 0000000..5a19db2 --- /dev/null +++ b/.idea/runConfigurations/Check_flake8.xml @@ -0,0 +1,34 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Check_isort.xml b/.idea/runConfigurations/Check_isort.xml new file mode 100644 index 0000000..344b25c --- /dev/null +++ b/.idea/runConfigurations/Check_isort.xml @@ -0,0 +1,34 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Check_pylint.xml b/.idea/runConfigurations/Check_pylint.xml new file mode 100644 index 0000000..852aeaa --- /dev/null +++ b/.idea/runConfigurations/Check_pylint.xml @@ -0,0 +1,34 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Run_isort.xml b/.idea/runConfigurations/Run_isort.xml new file mode 100644 index 0000000..e44bb7f --- /dev/null +++ b/.idea/runConfigurations/Run_isort.xml @@ -0,0 +1,34 @@ + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file