fix: add no-extra-semi off to eslint config

This commit is contained in:
Joe Previte 2021-03-22 11:55:53 -07:00
parent b04104cafe
commit f09ebc06e9
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24

View File

@ -29,6 +29,7 @@ rules:
"@typescript-eslint/no-var-requires": off
"@typescript-eslint/explicit-module-boundary-types": off
"@typescript-eslint/no-explicit-any": off
"@typescript-eslint/no-extra-semi": off
eqeqeq: error
import/order:
[error, { alphabetize: { order: "asc" }, groups: [["builtin", "external", "internal"], "parent", "sibling"] }]