例如,我的 printWidth 值为 200 之类的每次都会中断。
<Form.Item label="xxx"><Input /></Form.Item>
<Form.Item label="yyy"><Select /></Form.Item>
<Form.Item label="zzzz"><Input /></Form.Item>
当我在这个代码块中运行时,eslint 结果是
<Form.Item label="xxx">
<Input />
</Form.Item>
<Form.Item label="yyy">
<Select />
</Form.Item>
<Form.Item label="zzzz">
<Input />
</Form.Item>
如果 printWidth 不是最大值,我不想断线。我怎样才能阻止它?
Eslint 规则。
module.exports = {
extends: ['airbnb-typescript-prettier'],
parser: '@typescript-eslint/parser',
"ignorePatterns": ["**/components/global/context_menu/*"],
rules: {
"radix": 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'react/button-has-type': 'off',
'no-use-before-define': 'off',
'react/jsx-filename-extension': 'off',
'react/prop-types': 'off',
'jsx-a11y/alt-text': 'off',
'react/jsx-props-no-spreading': 'off',
'comma-dangle': 'off',
'consistent-this': [0, 'component'],
'@typescript-eslint/no-this-alias': 'off',
'react/forbid-prop-types': 'off',
'no-self-compare': 'off',
'react/require-default-props': 'off',
'no-return-assign': 'off',
'react/destructuring-assignment': 'off',
camelcase: 'off',
"jsx-a11y/label-has-associated-control":"off",
'prefer-destructuring': 'off',
'react-hooks/exhaustive-deps':'off',
'jsx-a11y/click-events-have-key-events':'off',
'jsx-a11y/no-static-element-interactions':'off',
'no-throw-literal': 'off',
'no-mixed-spaces-and-tabs': 'off',
'no-tabs': 'off',
'react/no-unescaped-entities': 'off',
'no-underscore-dangle': 'off',
'import/no-cycle': 'off',
'max-len': [2, 150, 2],
},
};
更漂亮的规则。
module.exports = {
singleQuote: true,
trailingComma: 'all',
printWidth: 200,
arrowParens:"always"
};
答案 0 :(得分:1)
如果您不希望更漂亮的人为您的代码的一部分设置样式,您只需要这样做:(那个更漂亮的人忽略注释)
{/* prettier-ignore */}
<Form.Item label="xxx"><Input /></Form.Item>
这是基于文档: https://prettier.io/docs/en/ignore.html
希望对你有帮助?