vchikalkin b3615e6f55 upgrade to ESLint 9 flat config
upgrade dependencies
2024-11-26 13:29:23 +03:00

21 lines
378 B
JavaScript

/** @type {import('eslint').Linter.Config} */
module.exports = {
name: 'Common rules override',
rules: {
'canonical/filename-match-exported': 'off',
'func-style': [
'warn',
'declaration',
{
allowArrowFunctions: true,
},
],
'import/no-unassigned-import': [
2,
{
allow: ['**/*.css'],
},
],
},
};