chore: lint code example 4th try

This commit is contained in:
Mathias Leppich 2024-10-11 10:03:36 +02:00
parent 8cac586dee
commit e215fb5c48
2 changed files with 2 additions and 2 deletions

View file

@ -188,7 +188,7 @@ Or...
export default defineConfig({ export default defineConfig({
filter: { filter: {
filterTestGroups: testgroups => { filterTestGroups: testgroups => {
return testgroups.filter((testgroups, index) => index % 2 === 0) return testgroups.filter((testgroups, index) => index % 2 === 0);
}, },
}, },
}); });

View file

@ -1067,7 +1067,7 @@ interface TestConfig<TestArgs = {}, WorkerArgs = {}> {
* export default defineConfig({ * export default defineConfig({
* filter: { * filter: {
* filterTestGroups: testgroups => { * filterTestGroups: testgroups => {
* return testgroups.filter((testgroups, index) => index % 2 === 0) * return testgroups.filter((testgroups, index) => index % 2 === 0);
* }, * },
* }, * },
* }); * });