eslint-config-es
Version:
eslint-config-es contains a strict ESLint configuration for ES2015+ and TypeScript.
22 lines (18 loc) • 507 B
text/typescript
import { withPlugin } from '../betterRules';
const comments = withPlugin('eslint-comments', {
disableEnablePair: [],
noAggregatingEnable: [],
noDuplicateDisable: [],
noUnlimitedDisable: [],
noUnusedDisable: [],
noUnusedEnable: [],
noRestrictedDisable: false,
noUse: false,
// TODO [eslint-plugin-eslint-comments@>3.2.0]: This should be turned on,
// once https://github.com/mysticatea/eslint-plugin-pull/56
// has been merged.
requireDescription: false
});
export {
comments
};