29 lines
505 B
JavaScript
29 lines
505 B
JavaScript
export default [
|
|
{
|
|
ignores: [
|
|
'node_modules',
|
|
'out1',
|
|
'dist',
|
|
'build'
|
|
]
|
|
},
|
|
{
|
|
files: ['**/*.{js,jsx}'],
|
|
languageOptions: {
|
|
ecmaVersion: 2022,
|
|
sourceType: 'module',
|
|
globals: {
|
|
browser: true,
|
|
node: true
|
|
}
|
|
},
|
|
rules: {
|
|
// baseline rules; extend as needed
|
|
'no-unused-vars': ['warn', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }],
|
|
'no-undef': 'error',
|
|
'no-console': 'off'
|
|
}
|
|
}
|
|
];
|
|
|