Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(require-param-type): report column=1 #875

Merged
merged 2 commits into from Apr 18, 2022
Merged

Commits on Apr 18, 2022

  1. fix(require-param-type): report column=1

    Source
    ```js
    /**
     * @param {a xxx
     * @param {bc
     */
    ```
    
    Before
    ```
      2:0   error  Missing JSDoc @param "" type     jsdoc/require-param-type
      3:0   error  Missing JSDoc @param "" type     jsdoc/require-param-type
    ```
    
    After
    ```
      2:1   error  Missing JSDoc @param "" type     jsdoc/require-param-type
      3:1   error  Missing JSDoc @param "" type     jsdoc/require-param-type
    ```
    chearon committed Apr 18, 2022
    Configuration menu
    Copy the full SHA
    ba40111 View commit details
    Browse the repository at this point in the history
  2. refactor: specify columns elsewhere

    Also:
    - test: adds test for `require-param-type`
    brettz9 committed Apr 18, 2022
    Configuration menu
    Copy the full SHA
    e9b75e3 View commit details
    Browse the repository at this point in the history