@team23/eslint-config-team23-ts
Version:
A set of eslint rules used by TEAM23 for standard ts projects
22 lines • 665 B
JavaScript
import jsdoc from 'eslint-plugin-jsdoc';
const jsdocRecommendedConfig = Object.assign({ name: 'team23/type-script/jsdoc/recommended', plugins: {
jsdoc,
} }, jsdoc.configs['flat/recommended-typescript-error']);
const jsdocRecommendedModificationConfig = {
name: 'team23/type-script/jsdoc/recommended-modification',
rules: {
'jsdoc/check-indentation': 'error',
'jsdoc/tag-lines': [
'error',
'any',
{
startLines: 1,
},
],
},
};
export default [
jsdocRecommendedConfig,
jsdocRecommendedModificationConfig,
];
//# sourceMappingURL=jsdoc-config.js.map