poll.horse/frontend/.eslintrc.json
Wolvan 862fe9d2f2 Allow browser JS to be written for the frontend
ESLint in this project is by default configured to lint NodeJS
source code. The `./frontend` folder contains browser source code
though, so a new `.eslintrc` sets that for the frontend folder.
2022-01-01 04:06:20 +01:00

8 lines
118 B
JSON

{
"env": {
"browser": true,
"commonjs": false,
"es6": true,
"node": false
}
}