doc/dev/coding_standards_js.rst
author Nicola Spanti <nicola.spanti@logilab.fr>
Fri, 22 Feb 2019 16:47:40 +0100
changeset 12786 8a1b7aaf8309
parent 12370 b3084ae2e718
permissions -rw-r--r--
[html] Add tags ol, ul, li, i, q - It is useful. - A private client's project use this.

Javascript Coding Standards
---------------------------

(Draft, to be continued)

:Naming: camelCase, except for CONSTANTS

Indentation rules
~~~~~~~~~~~~~~~~~

- one space before an opening curly bracket ({)

- line break after a closing curly bracket (}) (possibly no line break if
  everything is on the same line)

- no tabs


Documentation
~~~~~~~~~~~~~
XXX explain comment format for documentation generation


Coding
~~~~~~
- Don't forget 'var' before variable definition, and semi-colon (';') after **each** statement.
- Check the firebug console for deprecation warnings


API usage
~~~~~~~~~
- unless intended, use jQuery('container') rather than jqNode('container')


See also
~~~~~~~~
http://google-styleguide.googlecode.com/svn/trunk/javascriptguide.xml