File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 18
18
flowtype/newline-after-flow-annotation : [error, always]
19
19
flowtype/no-dupe-keys : error
20
20
flowtype/no-existential-type : off # checked by Flow
21
- flowtype/no-flow-fix-me-comments : off # TODO
21
+ flowtype/no-flow-fix-me-comments : off
22
22
flowtype/no-mixed : off
23
23
flowtype/no-mutable-array : off
24
24
flowtype/no-primitive-constructor-types : error
@@ -103,8 +103,8 @@ rules:
103
103
array-callback-return : [error, { allowImplicit: true }]
104
104
block-scoped-var : error
105
105
class-methods-use-this : off
106
- complexity : off # maybe
107
- consistent-return : off # TODO
106
+ complexity : off
107
+ consistent-return : off
108
108
curly : [error, all]
109
109
default-case : off
110
110
default-param-last : off # TODO
@@ -117,7 +117,7 @@ rules:
117
117
no-case-declarations : error
118
118
no-div-regex : error
119
119
no-else-return : error
120
- no-empty-function : off # TODO
120
+ no-empty-function : error
121
121
no-empty-pattern : error
122
122
no-eq-null : off
123
123
no-eval : error
@@ -314,7 +314,7 @@ rules:
314
314
jsx-quotes : off
315
315
key-spacing : off
316
316
keyword-spacing : off
317
- linebreak-style : error
317
+ linebreak-style : off
318
318
max-len : off
319
319
multiline-ternary : off
320
320
newline-per-chained-call : off
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ const ColorType = new GraphQLEnumType({
19
19
} ,
20
20
} ) ;
21
21
22
- const Complex1 = { someRandomFunction : ( ) => { } } ;
22
+ const Complex1 = { someRandomFunction : ( ) => null } ;
23
23
const Complex2 = { someRandomValue : 123 } ;
24
24
25
25
const ComplexEnum = new GraphQLEnumType ( {
You can’t perform that action at this time.
0 commit comments