Good afternoon. Trying to deal with eslint for the first time. Using VS Code, put everything you need for lint tutorials, config was generated using eslint --init.
module.exports = {
"env": {
"browser": true,
"es6": true
},
"extends": [
"airbnb-base"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readon...