initial commit

This commit is contained in:
2026-05-04 22:05:10 +02:00
commit f638b06a86
43 changed files with 15670 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
rules: {
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'no-console': 'warn',
'no-empty': ['error', { allowEmptyCatch: true }],
},
env: {
node: true,
es2020: true,
jest: true,
},
};