From 648597521ca1aefb9b6ebc8e7b56a45b0e64759d Mon Sep 17 00:00:00 2001 From: Sean Mac Gillicuddy Date: Wed, 24 Jul 2019 12:41:33 +0100 Subject: [PATCH] #1307 Add inspections and codestyles to vcs --- .gitignore | 21 +- .idea/codeStyles/Project.xml | 367 ++++++++++++++++++ .idea/codeStyles/codeStyleConfig.xml | 5 + .idea/encodings.xml | 6 + .idea/inspectionProfiles/Project_Default.xml | 23 ++ .../kiwixAndroidInspections.xml | 32 ++ .../inspectionProfiles/profiles_settings.xml | 6 + .idea/vcs.xml | 6 + 8 files changed, 461 insertions(+), 5 deletions(-) create mode 100644 .idea/codeStyles/Project.xml create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/inspectionProfiles/kiwixAndroidInspections.xml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/vcs.xml diff --git a/.gitignore b/.gitignore index bd6b59553..614a48c30 100644 --- a/.gitignore +++ b/.gitignore @@ -38,11 +38,6 @@ proguard/ ### Android Patch ### gen-external-apklibs -# IDE -.idea -.settings -*.iml - # Mac OS X .DS_Store @@ -55,3 +50,19 @@ glassify .vscode captures/ + +# IDEA/Android Studio ignores +*.iml +*.ipr +*.iws +/.idea/* + +# IDEA/Android Studio Ignore exceptions +!/.idea/vcs.xml +!/.idea/fileTemplates/ +!/.idea/inspectionProfiles/ +!/.idea/scopes/ +!/.idea/codeStyles/ +!/.idea/encodings.xml +!/.idea/copyright/ +!/.idea/compiler.xml diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 000000000..d8199641c --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,367 @@ + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 000000000..79ee123c2 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 000000000..90a6a7ab1 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 000000000..e3e79f393 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,23 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/kiwixAndroidInspections.xml b/.idea/inspectionProfiles/kiwixAndroidInspections.xml new file mode 100644 index 000000000..00c381f62 --- /dev/null +++ b/.idea/inspectionProfiles/kiwixAndroidInspections.xml @@ -0,0 +1,32 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 000000000..e8a766b66 --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 000000000..35eb1ddfb --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file