1
0
mirror of https://github.com/morris/vanilla-todo.git synced 2025-02-22 23:22:46 +01:00
vanilla-todo/.eslintrc.js

25 lines
399 B
JavaScript
Raw Normal View History

2020-10-20 17:27:16 +02:00
module.exports = {
extends: ['eslint:recommended', 'plugin:compat/recommended'],
globals: {
Set: 'readonly',
Map: 'readonly',
},
env: {
browser: true,
},
parserOptions: {
ecmaVersion: 5,
},
rules: {},
settings: {
2020-10-21 11:28:36 +02:00
polyfills: [
'Set',
'Map',
'fetch',
'Object.assign',
'requestAnimationFrame',
2020-10-21 13:05:29 +02:00
'performance.now',
2020-10-21 11:28:36 +02:00
],
2020-10-20 17:27:16 +02:00
},
};