Skip to content

Commit

Permalink
🧹chore: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
masonmark committed Jan 12, 2025
1 parent b97c4a2 commit 00c9a6b
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion AlphabeticOrUnderscoreOrHyphenString.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ const JSRCompatibleFactory = ValidatedString.create(
const type: ValidatedString<typeof isAlphabeticOrUnderscoreOrHyphen> = JSRCompatibleFactory.type;
const factory: ValidatedStringFactory<typeof isAlphabeticOrUnderscoreOrHyphen> = JSRCompatibleFactory.factory;


/**
A string that contains only characters `[a-zA-Z_-]` (letters, underscores, or hyphens).
*/
Expand Down
1 change: 0 additions & 1 deletion AlphabeticString.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ const JSRCompatibleFactory = ValidatedString.create(isAlphabetic, {
const type: ValidatedString<typeof isAlphabetic> = JSRCompatibleFactory.type;
const factory: ValidatedStringFactory<typeof isAlphabetic> = JSRCompatibleFactory.factory;


/**
A string that contains only letters `[a-zA-Z]`.
*/
Expand Down
3 changes: 1 addition & 2 deletions PrometheusMetricNameWithoutColon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ const JSRCompatibleFactory = ValidatedString.create(
isPrometheusMetricNameWithoutColon,
{
name: 'PrometheusMetricNameWithoutColon',
description:
'must start with a letter or underscore, followed by letters, digits, or underscores',
description: 'must start with a letter or underscore, followed by letters, digits, or underscores',
},
);

Expand Down
1 change: 0 additions & 1 deletion mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ export { ValidatedString } from './ValidatedString.ts';
export { AlphabeticOrUnderscoreOrHyphenString } from './AlphabeticOrUnderscoreOrHyphenString.ts';
export { AlphabeticOrUnderscoreString } from './AlphabeticOrUnderscoreString.ts';
export { AlphabeticString } from './AlphabeticString.ts';
export { AwesomeString } from './AwesomeString.ts';
export { LowercaseAlphabeticString } from './LowercaseAlphabeticString.ts';
export { PrometheusMetricName } from './PrometheusMetricName.ts';
export { PrometheusMetricNameWithoutColon } from './PrometheusMetricNameWithoutColon.ts';
Expand Down

0 comments on commit 00c9a6b

Please sign in to comment.