-
-
Notifications
You must be signed in to change notification settings - Fork 926
Closed
Labels
Description
I have added the following elements:
:/.eslintrc.json ["http://json.schemastore.org/eslintrc"]
:/.eslintrc ["http://json.schemastore.org/eslintrc"]
in lsp-json--schema-associations
.
{
"env": {
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"no-": "error"
}
}