You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Code currently gets mangled during compression due to inconsistent semicolon usage. I am aware of ASI and typically code compresses fine with it, however something about the inconsistency seems to breaks the compression.
Suggest running through eslint with "rules": { "semi": ["error", "always"]} enabled to catch the 4 or 5 missing semicolons and ensure stability rather than relying on ASI https://eslint.org/docs/rules/semi)
The text was updated successfully, but these errors were encountered:
Can I just be lazy and tell you its lines: 31, 59, 88, 94, 95, 98, 99, 172? :)
It also flags "Expected a conditional expression and instead saw an assignment" (https://eslint.org/docs/rules/no-cond-assign) on line 165, which is valid but discouraged.
Code currently gets mangled during compression due to inconsistent semicolon usage. I am aware of ASI and typically code compresses fine with it, however something about the inconsistency seems to breaks the compression.
Suggest running through eslint with "rules": { "semi": ["error", "always"]} enabled to catch the 4 or 5 missing semicolons and ensure stability rather than relying on ASI https://eslint.org/docs/rules/semi)
The text was updated successfully, but these errors were encountered: