1
0
mirror of https://github.com/morris/vanilla-todo.git synced 2025-02-22 07:02:44 +01:00
vanilla-todo/.eslintrc.js
Morris Brodersen 4dc6ac879d add fps counter
2020-10-21 13:05:29 +02:00

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