нужно что бы отступ был 4 пробела.
.eslintrc.js такой:
```
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/recommended',
'prettier/@typescript-eslint',
'plugin:prettier/recommended',
'prettier/@typescript-eslint'
],
root: true,
env: {
node: true,
jest: true,
},
rules: {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/indent' : ['error',4]
},
};
.prettierrс такой:
{
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 4
}
```
Но prettier требует 2 пробела. Почему?
Почему игнорируется "tabWidth": 4
Обсуждают сегодня