eslint-plugin-arrow-return-style
Version:
Enforce arrow function return style and automatically fix it
25 lines (23 loc) • 597 B
TypeScript
import { Rule } from 'eslint';
declare const _default: {
configs: {
recommended: {
plugins: string[];
rules: {
'arrow-body-style': "off";
'arrow-return-style/arrow-return-style': "warn";
'arrow-return-style/no-export-default-arrow': "warn";
};
};
};
meta: {
name: string;
version: string;
};
rules: {
"arrow-return-style": Rule.RuleModule;
"no-export-default-arrow": Rule.RuleModule;
};
};
export { _default as default };
export = _default