代码拉取完成,页面将自动刷新
ESlint Rules for the Standard Linter
npm install --save-dev eslint-plugin-standard
{
rules: {
'standard/object-curly-even-spacing': [2, "either"]
'standard/array-bracket-even-spacing': [2, "either"],
'standard/computed-property-even-spacing': [2, "even"]
'standard/no-callback-literal': [2, ["cb", "callback"]]
}
}
There are several rules that were created specifically for the standard
linter.
object-curly-even-spacing
- Like object-curly-spacing
from ESLint except it has an either
option which lets you have 1 or 0 spaces padding.array-bracket-even-spacing
- Like array-bracket-even-spacing
from ESLint except it has an either
option which lets you have 1 or 0 spacing padding.computed-property-even-spacing
- Like computed-property-spacing
around ESLint except is has an even
option which lets you have 1 or 0 spacing padding.no-callback-literal
- Ensures that we strictly follow the callback pattern with undefined
, null
or an error object in the first position of a callback.此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。