From b5f60369a503defb7820e08bd2e2a8598ac0db78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=A4fer?= Date: Thu, 11 Apr 2019 12:46:50 +0200 Subject: [PATCH] Follow file naming convention All components should consist of a folder with these three files: ``` README.d index.vue spec.js ``` When you import components, omit the `index.vue`. That helps to `git grep` for component names. --- webapp/components/ContributionForm.vue | 2 +- webapp/components/Editor/Editor.spec.js | 14 ------ .../Editor/{Editor.vue => index.vue} | 0 webapp/components/Editor/spec.js | 44 +++++++++++++++++++ 4 files changed, 45 insertions(+), 15 deletions(-) delete mode 100644 webapp/components/Editor/Editor.spec.js rename webapp/components/Editor/{Editor.vue => index.vue} (100%) create mode 100644 webapp/components/Editor/spec.js diff --git a/webapp/components/ContributionForm.vue b/webapp/components/ContributionForm.vue index a859fd0fb..8ef232af4 100644 --- a/webapp/components/ContributionForm.vue +++ b/webapp/components/ContributionForm.vue @@ -49,7 +49,7 @@