mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-21 17:37:01 +01:00
24 lines
786 B
JavaScript
24 lines
786 B
JavaScript
module.exports = {
|
|
// Note that jsdoc is already in the `plugins` array thanks to
|
|
// @metamask/eslint-config — this just extends the config there
|
|
rules: {
|
|
// Allow tag `jest-environment` to work around Jest bug
|
|
// See: https://github.com/facebook/jest/issues/7780
|
|
'jsdoc/check-tag-names': ['error', { definedTags: ['jest-environment'] }],
|
|
'jsdoc/match-description': 'off',
|
|
'jsdoc/require-description': 'off',
|
|
'jsdoc/require-jsdoc': 'off',
|
|
'jsdoc/require-param-description': 'off',
|
|
'jsdoc/require-param-type': 'off',
|
|
'jsdoc/require-returns-description': 'off',
|
|
'jsdoc/require-returns-type': 'off',
|
|
'jsdoc/require-returns': 'off',
|
|
'jsdoc/valid-types': 'off',
|
|
},
|
|
settings: {
|
|
jsdoc: {
|
|
mode: 'typescript',
|
|
},
|
|
},
|
|
};
|