作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前,我遇到了这些 linting 错误:
ESLint:UNSAFE_componentWillUpdate 应该放在 someFunction (react/sort-comp) 之后
和
ESLint:标识符“UNSAFE_componentWillUpdate”不是驼峰式。 (驼峰式)
目前,我无法找到正确的规则添加到 .eslintrc
以应用于前置的 UNSAFE_
组件生命周期。我试图让它适用于 react/sort-comp
和 camelcase
规则,任何线索/帮助将不胜感激
最佳答案
你可以将它添加到你的 eslint
"camelcase": [
"error", {
"ignoreDestructuring": true,
"allow": [ "^UNSAFE_" ]
}
],
这基本上只允许所有重命名的 UNSAFE_
生命周期方法。
关于javascript - React JS - ESLint - 忽略具有 UNSAFE_componentWillMount、UNSAFE_componentWillUpdate 和 UNSAFE_componentWillReceiveProps 的组件的规则,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53844282/
目前,我遇到了这些 linting 错误: ESLint:UNSAFE_componentWillUpdate 应该放在 someFunction (react/sort-comp) 之后 和 ESL
我是一名优秀的程序员,十分优秀!