Update .eslintrc.json

This commit is contained in:
Matthieu MOREL 2021-11-11 07:37:14 +01:00 committed by GitHub
parent 57671b2b78
commit 12f58c967e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 2 deletions

View File

@ -13,5 +13,13 @@
"sourceType": "module"
},
"extends": ["eslint:recommended", "plugin:jsdoc/recommended", "plugin:prettier/recommended"],
"plugins": ["jsdoc", "prettier"]
}
"plugins": ["jsdoc", "prettier"],
"rules": {
"jsdoc/check-indentation": 0,
"jsdoc/check-alignment": 0,
"jsdoc/check-line-alignment": 0,
"jsdoc/multiline-blocks": 0,
"jsdoc/newline-after-description": 0,
"jsdoc/tag-lines": 0
}
}