UNPKG

@team23/eslint-config-team23-standard

Version:

A set of eslint rules used by TEAM23 for standard js projects

26 lines 848 B
import jsdoc from 'eslint-plugin-jsdoc'; const jsdocRecommendedConfig = Object.assign({ name: 'team23/java-script/jsdoc/recommended', plugins: { jsdoc, } }, jsdoc.configs['flat/recommended-typescript-flavor-error']); const jsdocRecommendedModificationConfig = { name: 'team23/java-script/jsdoc/recommended-modification', rules: { 'jsdoc/check-alignment': 'error', 'jsdoc/check-indentation': 'error', 'jsdoc/tag-lines': [ 'error', 'any', { startLines: 1, }, ], 'jsdoc/require-returns-typ': 'off', 'jsdoc/require-param-type': 'off', 'jsdoc/require-property-type': 'off', }, }; export default [ jsdocRecommendedConfig, jsdocRecommendedModificationConfig, ]; //# sourceMappingURL=jsdoc-config.mjs.map