1
0
mirror of https://github.com/morris/vanilla-todo.git synced 2025-02-22 07:02:44 +01:00
vanilla-todo/.eslintrc.js
2020-10-21 11:28:36 +02:00

24 lines
374 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',
],
},
};