eslint-plugin-oxlint
Version:
Turn off all rules already supported by oxlint
14 lines (13 loc) • 916 B
TypeScript
declare const pedanticRules: Record<string, 'off'>;
declare const styleRules: Record<string, 'off'>;
declare const suspiciousRules: Record<string, 'off'>;
declare const restrictionRules: Record<string, 'off'>;
declare const correctnessRules: Record<string, 'off'>;
declare const nurseryRules: Record<string, 'off'>;
declare const perfRules: Record<string, 'off'>;
declare const correctnessTypeAwareRules: Record<string, 'off'>;
declare const pedanticTypeAwareRules: Record<string, 'off'>;
declare const suspiciousTypeAwareRules: Record<string, 'off'>;
declare const restrictionTypeAwareRules: Record<string, 'off'>;
declare const styleTypeAwareRules: Record<string, 'off'>;
export { pedanticRules, styleRules, suspiciousRules, restrictionRules, correctnessRules, nurseryRules, perfRules, correctnessTypeAwareRules, pedanticTypeAwareRules, suspiciousTypeAwareRules, restrictionTypeAwareRules, styleTypeAwareRules, };