私は eslintrc ファイルを持つプロジェクトに取り組んでおり、Intellij プロジェクトで npm run test を実行すると、. エラーが発生する
Expected indentation of 1 tab character but found 0
.eslintrc ファイルの ESlint 検索を有効にする > その他の設定 > デフォルト設定 > 言語とフレームワーク > javascript > コード品質ツール > ESLint のチェックボックスをオンにしてみました
{
"parser": "babel-eslint",
"extends": [
"airbnb",
"plugin:import/errors",
"plugin:import/warnings"
],
"plugins": [
"react",
"flow-vars"
],
"settings": {
"import/ignore": [
"node_modules",
"\\.(html|json|properties)$",
"DevTools"
],
"import/resolver": {
"webpack": {
"config": "./src/js/webpack/webpack.base.config.js"
}
}
},
"rules": {
"eqeqeq": [2, "allow-null"],
"flow-vars/define-flow-type": 1,
"flow-vars/use-flow-type": 1,
"func-names": 0,
"import/no-named-as-default": 0,
"indent": [2, "tab", {"SwitchCase": 1}],
"new-cap": 0,
"no-multi-spaces": [2, {"exceptions": {"VariableDeclarator": true}}],
"no-param-reassign": [2, {"props": false}],
"no-script-url": 0,
"no-unused-vars": [2, {"args": "after-used", "argsIgnorePattern": "^_"}],
"no-use-before-define": [2, "nofunc"],
"quote-props": [2, "consistent-as-needed"],
"react/jsx-indent-props": [2, "tab"],
"react/jsx-no-bind": [2, {
"ignoreRefs": false,
"allowArrowFunctions": false,
"allowBind": false
}],
"space-before-function-paren": 0,
"spaced-comment": 0
},
"globals": {
"__ENV__": false,
"__DEV__": false,
"__TEST__": false
}
}
設定でタブ番号を4から2に変更しようとしましたが、エラーが発生しました。どんな助けでも感謝します。