Я установил eslint глобально, используя npm, и добавил свой собственный файл .eslintrc, содержащий следующий код:
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
}
Я добавил следующие зависимости dev:
"eslint": "3.19.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-markdown": "1.0.0-beta.6",
"eslint-plugin-node": "5.1.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1"
итакже установленный eslint-plugin-react
в моем собственном проекте.По-прежнему отсутствуют отступы, точка с запятой, ошибки в двойных кавычках, хотя отображаются ошибки синтаксического анализа.PS eslint плагин включен в VScode.