nextcloud/apps/dav/src/settings-example-content.js
Daniel Kesselberg 4a571fc391
style: enforce comma-dangle
The ESLint comma-dangle rule issues warnings but doesn't fail the CI.
Running npm run lint:fix adds missing commas automatically. This often
leads to committing unrelated changes. Now, the CI enforces the dangling
comma rule.

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2025-07-23 13:08:54 +02:00

18 lines
454 B
JavaScript

/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import Vue from 'vue'
import { translate } from '@nextcloud/l10n'
import ExampleContentSettingsSection from './views/ExampleContentSettingsSection.vue'
Vue.mixin({
methods: {
t: translate,
$t: translate,
},
})
const View = Vue.extend(ExampleContentSettingsSection);
(new View({})).$mount('#settings-example-content')