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
findDOMNode
Currently, when running make lint in this repo, it still suffers from react/no-find-dom-node warnings:
make lint
react/no-find-dom-node
The reason we want to have no warning when using eslint --fix is we'd like to enable the linter on CI but the warnings will break it.
eslint --fix
To be precise, we need to refactor away use of the deprecated API findDOMNode in about-us page.
Related thread: #1877
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, when running
make lint
in this repo, it still suffers fromreact/no-find-dom-node
warnings:The reason we want to have no warning when using
eslint --fix
is we'd like to enable the linter on CI but the warnings will break it.To be precise, we need to refactor away use of the deprecated API
findDOMNode
in about-us page.Related thread: #1877
The text was updated successfully, but these errors were encountered: