@secretlint/secretlint-rule-sendgrid
Version:
A secretlint rule for sendgrid api keys.
20 lines • 563 B
TypeScript
import { SecretLintRuleCreator } from "@secretlint/types";
export declare const messages: {
SENDGRID_KEY: {
en: (props: {
KEY: string;
}) => string;
ja: (props: {
KEY: string;
}) => string;
};
};
export type Options = {
/**
* Define allow pattern written by RegReg-like strings
* See https://github.com/textlint/regexp-string-matcher#regexp-like-string
**/
allows?: string[];
};
export declare const creator: SecretLintRuleCreator<Options>;
//# sourceMappingURL=index.d.ts.map