Skip to content

Commit e35c14e

Browse files
committed
Minor tweaks
1 parent be6ad23 commit e35c14e

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

index.js

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff 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',

0 commit comments

Comments
 (0)