21 lines
412 B
JavaScript
21 lines
412 B
JavaScript
import prettierConfig from 'eslint-config-prettier/flat'
|
|
|
|
export default [
|
|
{
|
|
files: ['src/**/*.js'],
|
|
languageOptions: {
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'script',
|
|
globals: {
|
|
window: 'readonly',
|
|
document: 'readonly',
|
|
dataLayer: 'writable'
|
|
}
|
|
},
|
|
rules: {
|
|
'no-unused-vars': ['warn', { argsIgnorePattern: '^_' }]
|
|
}
|
|
},
|
|
prettierConfig
|
|
]
|