-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
.browserlistrc
firefox 59
.eslintrc.json
{
"env": {
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:escompat/recommended"
],
"overrides": [],
"plugins": ["escompat"],
"rules": {
"escompat/no-optional-chaining": "error",
"no-unused-vars": "off",
"indent": [
"error",
4
],
"linebreak-style": [
"warn",
"windows"
],
"quotes": [
"warn",
"single",
{ "avoidEscape": true, "allowTemplateLiterals": true }
],
"semi": [
"error",
"always"
]
}
}Test code
let s = document.querySelector(`#hi`);
s?.click();
No errors.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels