Angular -> tslint Error, Definition of Rule jsdoc/newline-after-description

805 Views Asked by At

if i run my tslint - i get this error. how can i fix it?

 1:1  error  Definition for rule 'jsdoc/newline-after-description' was not found  jsdoc/newline-after-description

my Version is: "eslint-plugin-jsdoc": "^43.0.7",

1

There are 1 best solutions below

1
FTello31 On

add this rule in the .eslintrc.json file to fix it

"rules": {
  "jsdoc/newline-after-description": "off"
}