jscs-dev / node-jscs

:arrow_heading_up: JavaScript Code Style checker (unmaintained)
https://jscs-dev.github.io
MIT License
4.96k stars 513 forks source link

jsDoc checkParamNames #2017

Closed kobezzza closed 8 years ago

kobezzza commented 8 years ago
export const
    /**
     * Transformer for a group list
     *
     * @param {Array} arr - source list
     * @return {string}
     */
    q = (arr) => $C(arr).map((el) => `"${el}"`).join(', '); // Expected el but got arr (jsDoc)
markelog commented 8 years ago

/cc @zxqfox

qfox commented 8 years ago

Yeah, repeating with:

/** @param {Array} arr - source list */
var q = arr => arr.map(notArr => 1);
markelog commented 8 years ago

At this point only major and CST related bugs will be fixed.