jscs-jsdoc
jsdoc
plugin for jscs. Twitter | Mailing List
Table of Contents
Plugin installation
NB Since jscs v2.0
the plugin jscs-jsdoc
is bundled into it.
jscs-jsdoc
can be installed using NPM and requires jscs.
Install it globally if you are using globally installed jscs
npm -g install jscs-jsdoc
But better install it into your project
npm install jscs-jsdoc --save-dev
Versioning & Semver
We recommend installing jscs-jsdoc
via NPM using ^
, or ~
if you want more stable releases.
Semver (http://semver.org/) dictates that breaking changes be major version bumps. In the context of a linting tool, a bug fix that causes more errors to be reported can be interpreted as a breaking change. However, that would require major version bumps to occur more often than can be desirable. Therefore, as a compromise, we will only release bug fixes that cause more errors to be reported in minor versions.
Below you fill find our versioning strategy, and what you can expect to come out of a new jscs-jsdoc
release.
- Patch release:
- A bug fix in a rule that causes
jscs-jsdoc
to report less errors; - Docs, refactoring and other "invisible" changes for user;
- Minor release:
- Any preset changes;
- A bug fix in a rule that causes
jscs-jsdoc
to report more errors; - New rules or new options for existing rules that don't change existing behavior;
- Modifying rules so they report less errors, and don't cause build failures;
- Major release:
- Purposefully modifying existing rules so that they report more errors or change the meaning of a rule;
- Any architectural changes that could cause builds to fail.
Usage
To use plugin you should add these lines to configuration file .jscsrc
:
{
"plugins": [
"jscs-jsdoc"
],
"jsDoc": {
"checkAnnotations": "closurecompiler",
"checkTypes": "strictNativeCase",
"enforceExistence": {
"allExcept": ["exports"]
}
}
}
Rules
checkAnnotations
Checks tag names are valid.
There are 3 presets for Closure Compiler
, JSDoc3
and JSDuck5
.
By default it allows any tag from any preset. You can pass Object
to select preset with preset
field and add custom tags with extra
field.
Type: Boolean
or String
or {"preset": String, "extra": Object}
(see tag values).
Values: true
, "closurecompiler"
, "jsdoc3"
, "jsduck5"
, Object
Context: file
Tags: *
Tag values
extra
field should contains tags in keys and there are options for values:
false
means tag available with no valuetrue
means tag available with any value"some"
means tag available and requires some value
See also tag presets.
Example
"checkAnnotations": true
Valid
function _f() {}
Invalid
function _f() {}
Example 2
"checkAnnotations": {
"preset": "jsdoc3",
"extra": {
"boomer": false
}
}
Valid
function _f() {}
Invalid
checkParamExistence
Checks all parameters are documented.
Type: Boolean
Values: true
Example
"checkParamExistence": true
Valid
function _f ( message ) {
return true;
}
function _f ( message ) {
return true;
}
Invalid
function _f ( message ) {
return true;
}
checkParamNames
Checks param names in jsdoc and in function declaration are equal.
Type: Boolean
Values: true
Context: functions
Tags: param
, arg
, argument
Example
"checkParamNames": true
Valid
function method(message, line) {}
Invalid
function method(message) {}
requireParamTypes
Checks params in jsdoc contains type.
Type: Boolean
Values: true
Context: functions
Tags: param
, arg
, argument
Example
"requireParamTypes": true
Valid
function method() {}
Invalid
function method() {}
checkRedundantParams
Reports redundant params in jsdoc.
Type: Boolean
Values: true
Context: functions
Tags: param
, arg
, argument
Example
"checkRedundantParams": true
Valid
function method(message) {}
Invalid
function method() {}
checkReturnTypes
Checks for differences between the jsdoc and actual return types if both exist.
Type: Boolean
Values: true
Context: functions
Tags: return
, returns
Example
"checkReturnTypes": true
Valid
function method() {
return 'foo';
}
Invalid
function method(f) {
if (f) {
return true;
}
return 1;
}
checkRedundantReturns
Report statements for functions without return.
Type: Boolean
Values: true
Context: functions
Tags: return
, returns
Example
"checkRedundantReturns": true
Valid
function f() {
return 'yes';
}
Invalid
function f() {
}
requireReturnTypes
Checks returns in jsdoc contains type
Type: Boolean
Values: true
Context: functions
Tags: return
, returns
Example
"requireReturnTypes": true
Valid
function method() {}
function method() {}
Invalid
function method() {}
checkTypes
Reports invalid types for bunch of tags.
The strictNativeCase
mode checks that case of natives is the same as in this
list: boolean
, number
, string
, Object
, Array
, Date
, RegExp
.
The capitalizedNativeCase
mode checks that the first letter in all native
types and primitives is uppercased except the case with function
in google closure format: {function(...)}
Type: Boolean
or String
Values: true
or "strictNativeCase"
or "capitalizedNativeCase"
Context: *
Tags: typedef
, type
, param
, return
, returns
, enum
, var
, prop
, property
, arg
, argument
, cfg
, lends
, extends
, implements
, define
Example
"checkTypes": true
Valid
var bar = 1;
var FOO = 2;
var BAZ = 3;
function method(x) {}
Invalid
var x = 1;
function method(x) {}
function method(x) {}
var x = 1;
checkRedundantAccess
Reports redundant access declarations.
Type: Boolean
or String
Values: true
or "enforceLeadingUnderscore"
or "enforceTrailingUnderscore"
Context: functions
Tags: access
, private
, protected
, public
Example
"checkRedundantAccess": true
"checkRedundantAccess": "enforceLeadingUnderscore"
Valid for true, "enforceLeadingUnderscore"
function _f() {}
function f() {}
Invalid for true
function _f() {}
Invalid for "enforceLeadingUnderscore"
function _f() {}
leadingUnderscoreAccess
Checks access declaration is set for _underscored
function names
Ignores a bunch of popular identifiers:
__filename
, __dirname
, __proto__
, __defineGetter__
, super_
,
__constructor
, etc.
Type: Boolean
or String
Values: true
(means not public), "private"
, "protected"
Context: functions
Tags: access
, private
, protected
, public
Example
"leadingUnderscoreAccess": "protected"
Valid
function _f() {}
Invalid
function _g() {}
function _e() {}
enforceExistence
Checks jsdoc block exists.
Type: Boolean
, String
or Object
Values:
true
"exceptExports"
(deprecated use "allExcept": ["exports"]
)Object
:
"allExcept"
array of exceptions:
"expressions"
skip expression functions"exports"
skip module.exports = function () {};
"paramless-procedures"
functions without parameters and with empty
return statements will be skipped
Context: functions
Example
"enforceExistence": true
Valid
function _f() {}
Invalid
function _g() {}
requireHyphenBeforeDescription
Checks a param description has a hyphen before it (checks for -
).
Type: Boolean
Values: true
Context: functions
Tags: param
, arg
, argument
Example
"requireHyphenBeforeDescription": true
Valid
function method() {}
Invalid
function method() {}
requireNewlineAfterDescription
Checks a doc comment description has padding newline.
Type: Boolean
Values: true
Context: functions
Tags: *
Example
"requireNewlineAfterDescription": true
Valid
function method(msg) {}
function method() {}
function method(msg) {}
Invalid
function method() {}
disallowNewlineAfterDescription
Checks a doc comment description has no padding newlines.
Type: Boolean
Values: true
Context: functions
Tags: *
Example
"disallowNewlineAfterDescription": true
Valid
function method(msg) {}
function method() {}
function method(msg) {}
Invalid
function method(message) {}
requireDescriptionCompleteSentence
Checks a doc comment description is a complete sentence.
A complete sentence is defined as starting with an upper case letter and ending
with a period.
Type: Boolean
Values: true
Context: functions
Tags: *
Example
"requireDescriptionCompleteSentence": true
Valid
function method(msg) {}
function method() {}
function method() {}
function method(msg) {}
function method(msg) {}
Invalid
function method() {}
function method() {}
function method() {}
function method() {}
function method() {}
requireParamDescription
Checks a param description exists.
Type: Boolean
Values: true
Context: functions
Tags: param
, arg
, argument
Example
"requireParamDescription": true
Valid
function method(arg) {}
function method(arg) {}
Invalid
function method(arg) {}
function method(arg) {}
requireReturnDescription
Checks a return description exists.
Type: Boolean
Values: true
Context: functions
Tags: return
, returns
Example
"requireReturnDescription": true
Valid
function method() {
return false;
}
function method() {
return 'Hello!';
}
Invalid
function method() {
return false;
}