We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcee8af commit 2ae8f88Copy full SHA for 2ae8f88
typescript.js
@@ -16,6 +16,7 @@ module.exports = {
16
rules: {
17
// Default ESlint rules to TypeScript-ESlint
18
'@stylistic/array-bracket-spacing': [ 'error', 'always' ],
19
+ '@stylistic/arrow-parens': [ 'error', 'as-needed' ],
20
'brace-style': 0,
21
'@stylistic/brace-style': 2,
22
'comma-dangle': 0,
@@ -134,6 +135,13 @@ module.exports = {
134
135
'MemberExpression': 'off',
136
'SwitchCase': 0
137
}
- ]
138
+ ],
139
+ '@stylistic/jsx-equals-spacing': [ 'error', 'always' ],
140
+ '@stylistic/jsx-closing-bracket-location': [
141
+ 'error',
142
+ 'after-props'
143
144
+ '@stylistic/jsx-quotes': [ 'error', 'prefer-single' ],
145
+ '@stylistic/jsx-indent-props': 2
146
147
0 commit comments