In .eslintrc.js file{
"extends": [
'eslint:recommended', :one:
'plugin:@angular-eslint/recommended', :two:
'plugin:@typescript-eslint/recommended', :three:
'plugin:jest/recommended',
'plugin:jest-formatting/recommended',
'plugin:prettier/recommended' :star:
],
"env": {
"es6": true,
"node": true
}
}
:star: Always put 'plugin:prettier/recommended' in the end, in this way it'll make sure it overwrites all the other CODE FORMATTING RULES.