41 rules: {
42 'ft-flow/array-style-complex-type': [OFF, 'verbose'],
43▶ 'ft-flow/array-style-simple-type': [OFF, 'verbose'], // TODO should be WARNING
44 'ft-flow/boolean-style': ERROR,
45 'ft-flow/no-dupe-keys': ERROR,
· · ·
46 'ft-flow/no-primitive-constructor-types': ERROR,
47▶ 'ft-flow/no-types-missing-file-annotation': OFF, // TODO should be ERROR
48 'ft-flow/no-unused-expressions': ERROR,
49 // 'ft-flow/no-weak-types': WARNING,
· · ·
104 'no-process-env': OFF,
105 'no-proto': ERROR,
106▶ 'no-redeclare': OFF, // TODO should be WARNING?
107 'no-return-assign': OFF,
108 'no-script-url': ERROR,
· · ·
267
268 // Enforced by Prettier
269▶ // TODO: Prettier doesn't handle long strings or long comments. Not a big
270 // deal. But I turned it off because loading the plugin causes some obscure
271 // syntax error and it didn't seem worth investigating.