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

eslint-config-adidas-typescript: disable valid-jsdoc #32

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Feb 14, 2020

  1. eslint-config-adidas-typescript: disable valid-jsdoc

    In TypeScript project, sometimes the function can explain itself very well and here is no need to document parameters and returns:
    
    ```ts
    /**
     * ID should only contain letters, numbers, dashes and dots
     */
    export function validateId(id: string): boolean | undefined {
      if (id.length === 0) {
        return
      }
    
      const match = id.match(/[A-Za-z0-9\-.]*/)
    
      if (match && match.length && match[0] === id) {
        return true
      }
    
      return false
    }
    ```
    guoyunhe committed Feb 14, 2020
    Configuration menu
    Copy the full SHA
    b86c07b View commit details
    Browse the repository at this point in the history