はじめに
NestJSで発生するDelete ␍
eslint(prettier/prettier)を解決した備忘録です。
下記画像のようなエラーについての解決策です。
解決策
このエラーはESLint
とPrettier
の競合によるものらしいので
ESLint
のルールに下記のルールを足します。
.eslintrc.js
'prettier/prettier': ['error', { endOfLine: 'auto' }]
足した後のルールはこんな感じです。
.eslintrc.js
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',
'prettier/prettier': ['error', { endOfLine: 'auto' }],
}