eslint-plugin-oxlint
Version:
Turn off all rules already supported by oxlint
28 lines (27 loc) • 611 B
TypeScript
declare const configByCategory: {
'flat/pedantic': {
name: string;
rules: Record<string, "off">;
};
'flat/suspicious': {
name: string;
rules: Record<string, "off">;
};
'flat/style': {
name: string;
rules: Record<string, "off">;
};
'flat/restriction': {
name: string;
rules: Record<string, "off">;
};
'flat/correctness': {
name: string;
rules: Record<string, "off">;
};
'flat/perf': {
name: string;
rules: Record<string, "off">;
};
};
export default configByCategory;