Bumps [@nextcloud/eslint-config](https://github.com/nextcloud/eslint-config) from 6.0.0 to 6.1.0. - [Release notes](https://github.com/nextcloud/eslint-config/releases) - [Changelog](https://github.com/nextcloud/eslint-config/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/eslint-config/compare/v6.0.0...v6.1.0) --- updated-dependencies: - dependency-name: "@nextcloud/eslint-config" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
13 lines
278 B
JavaScript
13 lines
278 B
JavaScript
module.exports = {
|
|
extends: [
|
|
'@nextcloud',
|
|
],
|
|
rules: {
|
|
'jsdoc/require-param-description': ['off'],
|
|
'jsdoc/require-param-type': ['off'],
|
|
'jsdoc/check-param-names': ['off'],
|
|
'jsdoc/no-undefined-types': ['off'],
|
|
'jsdoc/require-property-description' : ['off']
|
|
},
|
|
}
|