Add missing semicolon warning

This commit is contained in:
Bill Thornton 2020-02-26 10:49:53 -05:00
parent 33bbd40174
commit 15ef6bf945

View file

@ -61,9 +61,11 @@ rules:
no-floating-decimal: ["error"]
no-multi-spaces: ["error"]
no-multiple-empty-lines: ["error", { "max": 1 }]
no-redeclare: ["warn"]
no-trailing-spaces: ["error"]
one-var: ["error", "never"]
semi: ["warn"]
space-before-blocks: ["error"]
# TODO: Fix warnings and remove these rules
no-redeclare: ["warn"]
no-unused-vars: ["warn"]
no-useless-escape: ["warn"]
one-var: ["error", "never"]
space-before-blocks: ["error"]