summaryrefslogtreecommitdiffstats
path: root/src/views
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-11-09 16:00:39 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-11-09 16:00:39 +0100
commitf281eaa71ff915370c0d9c1975fb46b7510f110d (patch)
treea033f254d219d750ff90487a2665f4265905f096 /src/views
parent07b5e76c479b8cf5f3668cc69ba87e9b3b844e4f (diff)
Eslint aliases and improved linting rules
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'src/views')
-rw-r--r--src/views/Contacts.vue14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/views/Contacts.vue b/src/views/Contacts.vue
index 56843b5e..f751470a 100644
--- a/src/views/Contacts.vue
+++ b/src/views/Contacts.vue
@@ -48,15 +48,15 @@
</template>
<script>
-import SettingsSection from '../components/SettingsSection'
-import ContentList from '../components/ContentList'
-import ContactDetails from '../components/ContactDetails'
-import ImportScreen from '../components/ImportScreen'
+import SettingsSection from 'Components/SettingsSection'
+import ContentList from 'Components/ContentList'
+import ContactDetails from 'Components/ContactDetails'
+import ImportScreen from 'Components/ImportScreen'
-import Contact from '../models/contact'
-import rfcProps from '../models/rfcProps.js'
+import Contact from 'Models/contact'
+import rfcProps from 'Models/rfcProps.js'
-import client from '../services/cdav.js'
+import client from 'Services/cdav.js'
export default {
name: 'Contacts',