Skip to content

Commit 742c7a2

Browse files
committed
chore: add existing ESLint errors to baseline
Signed-off-by: Ferdinand Thiessen <[email protected]>
1 parent c8f32bb commit 742c7a2

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

β€ŽREUSE.tomlβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,9 @@ path = ["openapi.json", "src/types/openapi/openapi.ts"]
8282
precedence = "aggregate"
8383
SPDX-FileCopyrightText = "2024 Nextcloud GmbH and Nextcloud contributors"
8484
SPDX-License-Identifier = "AGPL-3.0-or-later"
85+
86+
[[annotations]]
87+
path = ["eslint-suppressions.json"]
88+
precedence = "aggregate"
89+
SPDX-FileCopyrightText = "2025 Nextcloud GmbH and Nextcloud contributors"
90+
SPDX-License-Identifier = "AGPL-3.0-or-later"

β€Žeslint-suppressions.jsonβ€Ž

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"src/settings/AdminGroupSelect.tsx": {
3+
"@eslint-react/no-access-state-in-setstate": {
4+
"count": 1
5+
}
6+
},
7+
"src/settings/App.tsx": {
8+
"@eslint-react/no-access-state-in-setstate": {
9+
"count": 3
10+
}
11+
},
12+
"src/settings/SubAdminGroupSelect.tsx": {
13+
"@eslint-react/no-access-state-in-setstate": {
14+
"count": 1
15+
}
16+
}
17+
}

0 commit comments

Comments
Β (0)