RESOLVED FIXED 161561
Web Inspector: Update ESLint rules and run it over most of UserInterface
https://bugs.webkit.org/show_bug.cgi?id=161561
Summary Web Inspector: Update ESLint rules and run it over most of UserInterface
Joseph Pecoraro
Reported 2016-09-02 18:02:13 PDT
Summary: Update ESLint rules and run it over most of UserInterface I ran it over everything except the Views folder, which is a beast on its own. Updated the settings which catch reasonable issues. There were some actual issues caught by this, but this update is only mostly pedantic changes.
Attachments
[PATCH] Proposed Fix (56.61 KB, patch)
2016-09-02 19:09 PDT, Joseph Pecoraro
bburg: review+
Joseph Pecoraro
Comment 1 2016-09-02 19:09:40 PDT
Created attachment 287847 [details] [PATCH] Proposed Fix
Blaze Burg
Comment 2 2016-09-03 13:59:14 PDT
Comment on attachment 287847 [details] [PATCH] Proposed Fix View in context: https://bugs.webkit.org/attachment.cgi?id=287847&action=review r=me > Source/WebInspectorUI/UserInterface/Base/Object.js:41 > + return listener; Why not return null or throw an exception in the exceptional cases? These are almost always programming errors we want to fail hard on. > Source/WebInspectorUI/UserInterface/Controllers/TimelineManager.js:992 > + let nextRecord = function(list) { return list.shift() || null; }; This could be an arrow, I suppose.
Joseph Pecoraro
Comment 3 2016-09-04 21:49:56 PDT
Comment on attachment 287847 [details] [PATCH] Proposed Fix View in context: https://bugs.webkit.org/attachment.cgi?id=287847&action=review >> Source/WebInspectorUI/UserInterface/Base/Object.js:41 >> + return listener; > > Why not return null or throw an exception in the exceptional cases? These are almost always programming errors we want to fail hard on. Okay
Joseph Pecoraro
Comment 4 2016-09-04 22:15:00 PDT
Note You need to log in before you can comment on or make changes to this bug.