@secretlint/secretlint-rule-npm
Version:
36 lines • 923 B
TypeScript
import { SecretLintRuleCreator } from "@secretlint/types";
export declare const messages: {
PackageJSON_xOauthToken: {
en: (props: {
TOKEN: string;
}) => string;
ja: (props: {
TOKEN: string;
}) => string;
};
Npmrc_authToken: {
en: (props: {
TOKEN: string;
}) => string;
ja: (props: {
TOKEN: string;
}) => string;
};
NPM_ACCESS_TOKEN: {
en: (props: {
TOKEN: string;
}) => string;
ja: (props: {
TOKEN: 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