14 lines
242 B
JavaScript
14 lines
242 B
JavaScript
|
|
import js from '@eslint/js'
|
||
|
|
|
||
|
|
export default [
|
||
|
|
js.configs.recommended,
|
||
|
|
{
|
||
|
|
ignores: ['.next/**', 'out/**', 'landingpage/**', 'node_modules/**'],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
rules: {
|
||
|
|
'no-undef': 'off',
|
||
|
|
'no-unused-vars': 'off',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
]
|