23 lines
546 B
JavaScript
23 lines
546 B
JavaScript
// eslint.config.js
|
|
import config from '@sebastianbrenner/eslint-config/src/index.js';
|
|
|
|
export default [
|
|
...config,
|
|
{
|
|
ignores: [
|
|
'dist',
|
|
'build',
|
|
'node_modules',
|
|
],
|
|
rules: {
|
|
"react/react-in-jsx-scope": "off",
|
|
"react/jsx-newline": ["error", { "prevent": true }],
|
|
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
"indent": ["error", 4]
|
|
},
|
|
settings: {
|
|
'import/core-modules': ['bun' ]
|
|
}
|
|
},
|
|
];
|