File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,8 @@ module.exports = {
214214 // format: [
215215 // 'strictCamelCase'
216216 // ],
217- // leadingUnderscore: 'allow',
217+ // // We allow double underscope because of GraphQL type names and some React names.
218+ // leadingUnderscore: 'allowSingleOrDouble',
218219 // trailingUnderscore: 'allow',
219220 // // Ignore `{'Retry-After': retryAfter}` type properties.
220221 // filter: {
@@ -260,6 +261,17 @@ module.exports = {
260261 // format: [
261262 // 'StrictPascalCase'
262263 // ]
264+ // },
265+ // // Allow these in non-camel-case when quoted.
266+ // {
267+ // selector: [
268+ // 'classProperty',
269+ // 'objectLiteralProperty'
270+ // ],
271+ // format: null,
272+ // modifiers: [
273+ // 'requiresQuotes'
274+ // ]
263275 // }
264276 // ],
265277 '@typescript-eslint/no-base-to-string' : 'error' ,
You can’t perform that action at this time.
0 commit comments