chore: upgrade linting, apply linting

This commit is contained in:
2025-12-07 00:14:58 +01:00
parent 956f2a95e9
commit da21c627d7
5 changed files with 141 additions and 55 deletions

13
eslint.config.mjs Normal file
View File

@@ -0,0 +1,13 @@
import ivuorinenConfig from '@ivuorinen/eslint-config';
export default [
...ivuorinenConfig,
// your modifications
{
rules: {
// "no-unused-vars": "warn"
"n/no-unpublished-import": "off"
}
}
];