我在基于vim的 typescript 开发环境中安装了托盘程序,但是缩进管理存在问题。
可能是'eslint'说的:indent: Expected indentation of 2 spaces but found 4.
重新格式化后的prettier
。
我的.eslintrc.js
:
module.exports = {
parser: '@typescript-eslint/parser', // Specifies the ESLint parser
extends: [
'plugin:react/recommended', // Uses the recommended rules from @eslint-plugin-react
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from @typescript-eslint/eslint-plugin
'prettier/@typescript-eslint',
'plugin:prettier/recommended',
],
parserOptions: {
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
sourceType: 'module', // Allows for the use of imports
ecmaFeatures: {
jsx: true, // Allows for the parsing of JSX
tsx: true, // Allows for the parsing of TSX ???
},
},
rules: {
indent: ['error', 2],
quotes: ['error', 'single'],
semi: ['error', 'never'],
'sort-keys': ['error', 'asc', { caseSensitive: true, natural: false }],
},
}
我的
.prettierc
: module.exports = {
semi: false,
trailingComma: 'all',
singleQuote: true,
printWidth: 80,
tabWidth: 2,
};
最佳答案
根据这个Kai Cataldo对GitHub issue的评论:
因此,在使用prettier
时,最好禁用eslint的indent
规则。可以保证他们会发生冲突。
关于javascript - 漂亮的和附带的缩进不能一起使用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56337176/