1
0
Fork 0

prevent body error with eslint constructors

refactor/models
Matthew 2019-11-17 18:02:26 -05:00
parent cc1b9a2342
commit f76c2c4da3
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
1 changed files with 3 additions and 1 deletions

View File

@ -36,6 +36,8 @@
"camelcase": "off", "camelcase": "off",
"indent": "warn", "indent": "warn",
"object-curly-newline": "off", "object-curly-newline": "off",
"import/prefer-default-export": "off" "import/prefer-default-export": "off",
"no-useless-constructor": "off",
"@typescript-eslint/no-useless-constructor": 2
} }
} }