eslint-plugin-canonical
Version:
Canonical linting rules for ESLint.
14 lines (13 loc) • 531 B
TypeScript
/**
* @file Rule to ensure that filenames match a convention (default: camelCase)
* @author Stefan Lau
* @see https://github.com/selaux/eslint-plugin-filenames/blob/32fc70dd7572211d1e5b97e06ec7a005c77fe8d4/lib/rules/match-regex.js
*/
type Options = [
{
ignoreExporting?: boolean;
regex?: string | null;
}
];
declare const _default: import("@typescript-eslint/utils/ts-eslint").RuleModule<"notMatch", Options, unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
export default _default;