0
0
Fork 0

Rework Prettier invocation (#28851)

This commit is contained in:
Renaud Chaput 2024-02-27 17:09:27 +01:00 committed by GitHub
parent dc4427dc9b
commit 3b31447408
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 74 additions and 361 deletions

View file

@ -338,7 +338,6 @@ module.exports = defineConfig({
'plugin:import/typescript',
'plugin:promise/recommended',
'plugin:jsdoc/recommended-typescript',
'plugin:prettier/recommended',
],
parserOptions: {
@ -347,6 +346,9 @@ module.exports = defineConfig({
},
rules: {
// Disable formatting rules that have been enabled in the base config
'indent': 'off',
'import/consistent-type-specifier-style': ['error', 'prefer-top-level'],
'@typescript-eslint/consistent-type-definitions': ['warn', 'interface'],