mirror of
https://github.com/morris/vanilla-todo.git
synced 2025-02-22 07:02:44 +01:00
25 lines
399 B
JavaScript
25 lines
399 B
JavaScript
module.exports = {
|
|
extends: ['eslint:recommended', 'plugin:compat/recommended'],
|
|
globals: {
|
|
Set: 'readonly',
|
|
Map: 'readonly',
|
|
},
|
|
env: {
|
|
browser: true,
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 5,
|
|
},
|
|
rules: {},
|
|
settings: {
|
|
polyfills: [
|
|
'Set',
|
|
'Map',
|
|
'fetch',
|
|
'Object.assign',
|
|
'requestAnimationFrame',
|
|
'performance.now',
|
|
],
|
|
},
|
|
};
|