我想使用airbnb样式的ESLint。 但是,可访问性并没有为我的项目带来价值,实际上,这给代码增加了更多的噪音。
是否可以使用AirBnb附加功能,但禁用jsx-a11y
?
我可以派生AirBnb存储库并删除链接,但是只是想知道是否有更好的方法。
答案 0 :(得分:1)
在您的.eslintrc
中,您可以更改:
"extends": [
"airbnb"
]
到
"extends": [
"airbnb-base",
"airbnb/rules/react"
]
所有功劳归于oustn
答案 1 :(得分:0)
如果您使用的是Typescript,请更改:
"extends": [
"airbnb-typescript"
],
收件人:
"extends": [
"eslint-config-airbnb-base",
"airbnb/rules/react"
],