Changes between Version 18 and Version 19 of WebInspectorCodingStyleGuide


Ignore:
Timestamp:
Nov 21, 2015 11:57:13 AM (9 years ago)
Author:
BJ Burg
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebInspectorCodingStyleGuide

    v18 v19  
    1515* Put anonymous functions inline if they are not used as a subroutine.
    1616* Use arrow functions when possible, unless it makes code less readable. See below for examples.
     17* For default parameters, add a space around the default assignment: `function foo(isGood = false)`
    1718
    1819== Naming things