We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
@typescript-eslint/block-spacing
1 parent 8ca5a6d commit a32584cCopy full SHA for a32584c
configurations/typescript/rules/typescript.js
@@ -98,6 +98,11 @@ module.exports = {
98
extendDefaults: false,
99
}],
100
101
+ // Disallow or enforce spaces inside of blocks
102
+ // after opening block and before closing block (autofixable)
103
+ // https://typescript-eslint.io/rules/block-spacing
104
+ ...extendFromBase('+block-spacing'),
105
+
106
// Enforce consistent brace style for blocks (autofixable)
107
// https://typescript-eslint.io/rules/brace-style
108
...extendFromBase('+brace-style'),
0 commit comments