We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.eslintrc.js
module.exports = { extends: "eslint-config-egg/typescript", parserOptions: { project: "./tsconfig.json" }, rules: { indent: ["error", 4] } }
after fixed it,still error
The text was updated successfully, but these errors were encountered:
To my knowledge you need to disabled the default eslint ident rule when using a specific typescript rule. I always do something like
"indent": "off", "@typescript-eslint/indent": ["warn", "tab", { "SwitchCase": 1 } ]
This is how it is documented by the typescript-eslint plugin.
Please ping if this doesn't solve the issue.
Sorry, something went wrong.
No branches or pull requests
.eslintrc.js
after fixed it,still error
The text was updated successfully, but these errors were encountered: