Ref T7409. Adds a rule to detect unnecessary semicolons. The most common scenario I've seen in the wild is the use of semicolons after a class definition:
class MyClass { // ... };
Differential D12139
Add a linter rule to detect unnecessary semicolons joshuaspence on Mar 23 2015, 8:23 PM. Authored by Tags None Referenced Files
Subscribers Tokens
Details
Ref T7409. Adds a rule to detect unnecessary semicolons. The most common scenario I've seen in the wild is the use of semicolons after a class definition: class MyClass { // ... }; Added unit tests.
Diff Detail
|