Тестовый коммит после удаления husky

This commit is contained in:
2025-03-05 01:02:09 +03:00
parent 97ca5e4b64
commit 3157ad0cd9
118 changed files with 8177 additions and 8530 deletions

30
backend/eslint.config.js Normal file
View File

@@ -0,0 +1,30 @@
import globals from 'globals';
export default [
{
ignores: ['node_modules/**', 'artifacts/**', 'sessions/**', 'logs/**', 'data/**'],
},
{
files: ['**/*.js'],
languageOptions: {
ecmaVersion: 2022,
sourceType: 'module',
globals: {
...globals.node,
...globals.es2021,
describe: 'readonly',
it: 'readonly',
beforeEach: 'readonly',
before: 'readonly',
after: 'readonly',
afterEach: 'readonly',
},
},
rules: {
'no-unused-vars': 'off',
'no-console': 'off',
'no-undef': 'error',
'no-duplicate-imports': 'error',
},
},
];