1
0
mirror of https://github.com/morris/vanilla-todo.git synced 2025-01-17 20:58:22 +01:00
vanilla-todo/es5/.eslintrc.json
Morris Brodersen e17050a266 some cleanups
2022-07-22 16:43:29 +02:00

26 lines
413 B
JSON

{
"root": true,
"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"
]
}
}