mediawiki-extensions-Echo/.jscsrc
Timo Tijhof 12eff85cf7 jsduck: Remove custom @source tag
Only used in external.js to render a simple link. These methods
don't have a regular description and as such the link renders
effectively the same way in the same place without `@source`.

Change-Id: I83cd524b6b53e67c5c2d18258c804ebd49a29b74
2016-09-21 00:51:46 +01:00

24 lines
495 B
Plaintext

{
"preset": "wikimedia",
"disallowDanglingUnderscores": null,
"jsDoc": {
"checkAnnotations": {
"preset": "jsduck5",
"extra": {
"mixin": false,
"todo": true,
"see": true
}
},
"requireParamTypes": true,
"checkReturnTypes": true,
"checkParamNames": true,
"checkTypes": "strictNativeCase",
"requireReturnTypes": true,
"checkRedundantAccess": true,
"checkRedundantParams": true,
"checkRedundantReturns": true,
"requireNewlineAfterDescription": true
}
}