Skip to content

Commit 6bbda8d

Browse files
committed
chore: finish eslint todos
Signed-off-by: Hamza <hamzamahjoubi221@gmail.com>
1 parent a84f80f commit 6bbda8d

2 files changed

Lines changed: 4 additions & 11 deletions

File tree

eslint.config.mjs

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
/*
1+
/*
22
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
33
* SPDX-License-Identifier: AGPL-3.0-or-later
44
*/
55

6-
import { defineConfig } from 'eslint/config'
7-
8-
// TODO: replace with recommended when migrating to Vue 3
96
import { recommended } from '@nextcloud/eslint-config'
7+
import { defineConfig } from 'eslint/config'
108

119
export default defineConfig([
1210
...recommended,
@@ -22,9 +20,7 @@ export default defineConfig([
2220
'jsdoc/require-jsdoc': 'off',
2321
'jsdoc/require-param': 'off',
2422
// Forbid empty JSDocs
25-
// TODO: Enable this rule once @nextcloud/eslint-config was updated and pulls the
26-
// newest version of eslint-plugin-jsdoc (is a recent feature/rule).
27-
// 'jsdoc/no-blank-blocks': 'error',
23+
'jsdoc/no-blank-blocks': 'error',
2824
},
2925
},
30-
])
26+
])

src/services/cdav.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ import { getRequestToken } from '@nextcloud/auth'
77
import DavClient from '@nextcloud/cdav-library'
88
import { generateRemoteUrl } from '@nextcloud/router'
99

10-
/**
11-
*
12-
*/
1310
function xhrProvider() {
1411
const headers = {
1512
'X-Requested-With': 'XMLHttpRequest',

0 commit comments

Comments
 (0)