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
Hi everyone!
We are trying out Codefactor for our organization and it works great so far.
Our only problem comes from having a custom ESLint configurations:
Our .eslintrc.json file:
.eslintrc.json
{ "parser": "@typescript-eslint/parser", "extends": [ "rokket-labs", "rokket-labs/react", "eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier/@typescript-eslint" ], "settings": { "react": { "version": "detect" } }, "env": { "browser": true, "node": true, "es6": true }, "plugins": ["@typescript-eslint", "react"], "parserOptions": { "ecmaFeatures": { "jsx": true }, "ecmaVersion": 2018, "sourceType": "module" }, "rules": { "react/prop-types": "off", "@typescript-eslint/explicit-function-return-type": "off", "no-use-before-define": "off", "@typescript-eslint/no-use-before-define": ["error"] }, "overrides": [ { "files": ["*.js"], "rules": { "@typescript-eslint/no-var-requires": "off" } } ] }
The error reads out not supported dependencies: rokket-labs. Here's our custom config.
not supported dependencies: rokket-labs
Is this kind of configuration supported? I'm pretty sure we're not using any plugins outside of the ones specified here.
The text was updated successfully, but these errors were encountered:
@tomcastro thanks for reaching out. Yes, such configuration are supported. You should now see proper results for your repo.
Sorry, something went wrong.
No branches or pull requests
Hi everyone!
We are trying out Codefactor for our organization and it works great so far.
Our only problem comes from having a custom ESLint configurations:
Our
.eslintrc.json
file:The error reads out
not supported dependencies: rokket-labs
. Here's our custom config.Is this kind of configuration supported? I'm pretty sure we're not using any plugins outside of the ones specified here.
The text was updated successfully, but these errors were encountered: