chore: fix all linting issues and optimize components

This commit is contained in:
2026-02-11 10:40:57 +01:00
parent 5b4d3ebb41
commit c37fabdc8f
23 changed files with 275 additions and 59 deletions

View File

@@ -1,6 +1,5 @@
/* eslint-disable no-undef */
/* eslint-env node */
const path = require('path');
const path = require('path'); // eslint-disable-line @typescript-eslint/no-require-imports
const buildEslintCommand = (filenames) =>
`eslint --fix ${filenames.map((f) => path.relative(process.cwd(), f)).join(' ')}`;