From 3f3f173ea93ab191fde7d779190ed08a3b193c2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Minelli?= <michael@minelli.me> Date: Tue, 19 Dec 2023 20:40:40 +0100 Subject: [PATCH] Idea => Add configuration and codeStyle --- AngularApp/.gitkeep | 0 AngularApp/.idea/.gitignore | 8 ++++++++ AngularApp/.idea/.name | 1 + AngularApp/.idea/DojoWeb.iml | 13 +++++++++++++ AngularApp/.idea/codeStyles | 1 + .../.idea/inspectionProfiles/Project_Default.xml | 6 ++++++ .../.idea/inspectionProfiles/inspectionProfiles | 1 + AngularApp/.idea/modules.xml | 8 ++++++++ AngularApp/.idea/sqldialects.xml | 1 + AngularApp/.idea/vcs.xml | 6 ++++++ 10 files changed, 45 insertions(+) delete mode 100644 AngularApp/.gitkeep create mode 100644 AngularApp/.idea/.gitignore create mode 100644 AngularApp/.idea/.name create mode 100644 AngularApp/.idea/DojoWeb.iml create mode 120000 AngularApp/.idea/codeStyles create mode 100644 AngularApp/.idea/inspectionProfiles/Project_Default.xml create mode 120000 AngularApp/.idea/inspectionProfiles/inspectionProfiles create mode 100644 AngularApp/.idea/modules.xml create mode 120000 AngularApp/.idea/sqldialects.xml create mode 100644 AngularApp/.idea/vcs.xml diff --git a/AngularApp/.gitkeep b/AngularApp/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/AngularApp/.idea/.gitignore b/AngularApp/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/AngularApp/.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/AngularApp/.idea/.name b/AngularApp/.idea/.name new file mode 100644 index 0000000..f881a25 --- /dev/null +++ b/AngularApp/.idea/.name @@ -0,0 +1 @@ +DojoWeb \ No newline at end of file diff --git a/AngularApp/.idea/DojoWeb.iml b/AngularApp/.idea/DojoWeb.iml new file mode 100644 index 0000000..69ef67a --- /dev/null +++ b/AngularApp/.idea/DojoWeb.iml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<module type="WEB_MODULE" version="4"> + <component name="NewModuleRootManager"> + <content url="file://$MODULE_DIR$"> + <excludeFolder url="file://$MODULE_DIR$/.tmp" /> + <excludeFolder url="file://$MODULE_DIR$/dist" /> + <excludeFolder url="file://$MODULE_DIR$/temp" /> + <excludeFolder url="file://$MODULE_DIR$/tmp" /> + </content> + <orderEntry type="inheritedJdk" /> + <orderEntry type="sourceFolder" forTests="false" /> + </component> +</module> \ No newline at end of file diff --git a/AngularApp/.idea/codeStyles b/AngularApp/.idea/codeStyles new file mode 120000 index 0000000..ba0a7c5 --- /dev/null +++ b/AngularApp/.idea/codeStyles @@ -0,0 +1 @@ +jetbrainsConfiguration/codeStyles/ \ No newline at end of file diff --git a/AngularApp/.idea/inspectionProfiles/Project_Default.xml b/AngularApp/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..03d9549 --- /dev/null +++ b/AngularApp/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,6 @@ +<component name="InspectionProjectProfileManager"> + <profile version="1.0"> + <option name="myName" value="Project Default" /> + <inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" /> + </profile> +</component> \ No newline at end of file diff --git a/AngularApp/.idea/inspectionProfiles/inspectionProfiles b/AngularApp/.idea/inspectionProfiles/inspectionProfiles new file mode 120000 index 0000000..7b646ad --- /dev/null +++ b/AngularApp/.idea/inspectionProfiles/inspectionProfiles @@ -0,0 +1 @@ +jetbrainsConfiguration/inspectionProfiles/ \ No newline at end of file diff --git a/AngularApp/.idea/modules.xml b/AngularApp/.idea/modules.xml new file mode 100644 index 0000000..15ab745 --- /dev/null +++ b/AngularApp/.idea/modules.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="ProjectModuleManager"> + <modules> + <module fileurl="file://$PROJECT_DIR$/.idea/DojoWeb.iml" filepath="$PROJECT_DIR$/.idea/DojoWeb.iml" /> + </modules> + </component> +</project> \ No newline at end of file diff --git a/AngularApp/.idea/sqldialects.xml b/AngularApp/.idea/sqldialects.xml new file mode 120000 index 0000000..f661c8c --- /dev/null +++ b/AngularApp/.idea/sqldialects.xml @@ -0,0 +1 @@ +jetbrainsConfiguration/rootFiles/sqldialects.xml \ No newline at end of file diff --git a/AngularApp/.idea/vcs.xml b/AngularApp/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/AngularApp/.idea/vcs.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="VcsDirectoryMappings"> + <mapping directory="$PROJECT_DIR$/.." vcs="Git" /> + </component> +</project> \ No newline at end of file -- GitLab