mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-12 09:09:25 +00:00
57 lines
1.3 KiB
Markdown
57 lines
1.3 KiB
Markdown
|
# VisualEditor Code Guidelines
|
||
|
|
||
|
We inherit the code structure (about whitespace, naming and comments) conventions
|
||
|
from MediaWiki:
|
||
|
* [Manual:Coding conventions/JavaScript#Code structure](https://www.mediawiki.org/wiki/Manual:Coding_conventions/JavaScript#Code_structure) on mediawiki.org.
|
||
|
|
||
|
## Documentation comments
|
||
|
|
||
|
* End sentences in a full stop.
|
||
|
* Continue sentences belonging to an annotation on the next line, indented with an
|
||
|
additional space.
|
||
|
* Types in documentation comments should be separated by a pipe character. Use types
|
||
|
that are listed in the Types section of this document, otherwise use the identifier
|
||
|
(full path from the global scope) of the constructor function (e.g. `{ve.dm.BranchNode}`).
|
||
|
|
||
|
|
||
|
### Annotations
|
||
|
|
||
|
We use the following annotations. They should be used in the order as they are described
|
||
|
here for consistency.
|
||
|
|
||
|
* @class
|
||
|
* @mixin
|
||
|
* @abstract
|
||
|
* @constructor
|
||
|
* @extends {Type}
|
||
|
* @static
|
||
|
* @method
|
||
|
* @until Text: Optional details.
|
||
|
* @source
|
||
|
* @param {Type} varName Optional description.
|
||
|
* @returns {Type} Optional description.
|
||
|
|
||
|
### Types
|
||
|
|
||
|
Special values:
|
||
|
* undefined
|
||
|
* null
|
||
|
* Infinity
|
||
|
* NaN
|
||
|
|
||
|
Native language types:
|
||
|
* Boolean
|
||
|
* String
|
||
|
* Number
|
||
|
* Object
|
||
|
|
||
|
Native constructors:
|
||
|
* Array
|
||
|
* Date
|
||
|
|
||
|
Browser constructors:
|
||
|
* DOMElement (alias for HTMLElement)
|
||
|
|
||
|
jQuery constructors:
|
||
|
* jQuery
|
||
|
* jQuery.Event
|