From 81346682958e1721360eac1c75b81844b5c3cd18 Mon Sep 17 00:00:00 2001 From: Markus Zehnder Date: Wed, 28 Feb 2024 22:14:49 +0100 Subject: [PATCH] build: add IntelliJ project configuration --- .idea/.gitignore | 8 +++++ .idea/integration-appletv.iml | 11 +++++++ .idea/misc.xml | 12 ++++++++ .idea/modules.xml | 8 +++++ .idea/runConfigurations/check_black.xml | 34 +++++++++++++++++++++ .idea/runConfigurations/check_flake8.xml | 34 +++++++++++++++++++++ .idea/runConfigurations/check_isort.xml | 34 +++++++++++++++++++++ .idea/runConfigurations/driver.xml | 38 ++++++++++++++++++++++++ .idea/runConfigurations/pylint.xml | 34 +++++++++++++++++++++ .idea/runConfigurations/run_black.xml | 34 +++++++++++++++++++++ .idea/runConfigurations/run_isort.xml | 34 +++++++++++++++++++++ .idea/vcs.xml | 14 +++++++++ 12 files changed, 295 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/integration-appletv.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/runConfigurations/check_black.xml create mode 100644 .idea/runConfigurations/check_flake8.xml create mode 100644 .idea/runConfigurations/check_isort.xml create mode 100644 .idea/runConfigurations/driver.xml create mode 100644 .idea/runConfigurations/pylint.xml create mode 100644 .idea/runConfigurations/run_black.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/integration-appletv.iml b/.idea/integration-appletv.iml new file mode 100644 index 0000000..2cdb1e3 --- /dev/null +++ b/.idea/integration-appletv.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..c229986 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,12 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..1dca15c --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/check_black.xml b/.idea/runConfigurations/check_black.xml new file mode 100644 index 0000000..9f849ba --- /dev/null +++ b/.idea/runConfigurations/check_black.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..50cccae --- /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..000bc88 --- /dev/null +++ b/.idea/runConfigurations/check_isort.xml @@ -0,0 +1,34 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/driver.xml b/.idea/runConfigurations/driver.xml new file mode 100644 index 0000000..0cc042d --- /dev/null +++ b/.idea/runConfigurations/driver.xml @@ -0,0 +1,38 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/pylint.xml b/.idea/runConfigurations/pylint.xml new file mode 100644 index 0000000..fc201c4 --- /dev/null +++ b/.idea/runConfigurations/pylint.xml @@ -0,0 +1,34 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/run_black.xml b/.idea/runConfigurations/run_black.xml new file mode 100644 index 0000000..cbe248f --- /dev/null +++ b/.idea/runConfigurations/run_black.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..d8b7aea --- /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..18391f5 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file