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
I use this eslint config
{ "extends": ["next"], "plugins": ["deprecation"], "overrides": [ { "files": ["**/*.ts", "**/*.tsx"], "rules": { "deprecation/deprecation": "warn" } }, { "files": ["**/*.spec.ts", "**/*.spec.tsx"], "plugins": ["jest", "jest-formatting", "testing-library"], "env": { "jest": true }, "extends": [ "plugin:jest/recommended", "plugin:jest/style", "plugin:jest-formatting/strict", "plugin:testing-library/react" ] } ] }
and this .hound.yml
.hound.yml
eslint: enabled: true version: 7.7.0 config_file: .eslintrc.json ignore_file: .eslintignore jshint: enabled: false
and I'm getting the following messages in the PR from Hound
Also there are some open issues related to missing plugins #1845 #1841 #1838 etc
This can be done by installing eslint's packages in package.json or add a setting to pass an array of packages to Hound
package.json
eslint: enabled: true version: 7.7.0 config_file: .eslintrc.json ignore_file: .eslintignore plugins: - eslint-config-next - eslint-plugin-deprecation - eslint-plugin-jest - eslint-plugin-jest-formatting - eslint-plugin-testing-library jshint: enabled: false
This will be helpful for you because it will prevent that people open a new issue for every eslint plugin and config in NPM
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I use this eslint config
and this
.hound.yml
and I'm getting the following messages in the PR from Hound
Also there are some open issues related to missing plugins #1845 #1841 #1838 etc
This can be done by installing eslint's packages in
package.json
or add a setting to pass an array of packages to HoundThis will be helpful for you because it will prevent that people open a new issue for every eslint plugin and config in NPM
The text was updated successfully, but these errors were encountered: