Skip to content

Commit

Permalink
fix: adjust broken links in blocked file hints (#3781)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgoetzegb authored Nov 12, 2024
1 parent 0f89dfc commit e22078e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/_server/src/utils/analysis.mts
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ export const ReasonLineLength: MinifiedReason = {
code: 'Lines_too_long.',
message: 'Lines are too long.',
documentationRefUri:
'https://streetsidesoftware.github.io/vscode-spell-checker/docs/configuration/#cspellblockcheckingwhenlinelengthgreaterthan',
'https://streetsidesoftware.github.io/vscode-spell-checker/docs/configuration/performance/#cspellblockcheckingwhenlinelengthgreaterthan',
};

export const ReasonAverageWordsSize: MinifiedReason = {
code: 'Word_Size_Too_High.',
message: 'Average Word Size is Too High.',
documentationRefUri:
'https://streetsidesoftware.github.io/vscode-spell-checker/docs/configuration/#cspellblockcheckingwhenaveragechunksizegreaterthan',
'https://streetsidesoftware.github.io/vscode-spell-checker/docs/configuration/performance/#cspellblockcheckingwhenaveragechunksizegreaterthan',
};
export const ReasonMaxWordsSize: MinifiedReason = {
code: 'Maximum_Word_Length_Exceeded',
message: 'Maximum Word Length Exceeded.',
documentationRefUri:
'https://streetsidesoftware.github.io/vscode-spell-checker/docs/configuration/#cspellblockcheckingwhentextchunksizegreaterthan',
'https://streetsidesoftware.github.io/vscode-spell-checker/docs/configuration/performance/#cspellblockcheckingwhentextchunksizegreaterthan',
};

export interface IsTextLikelyMinifiedOptions {
Expand Down

0 comments on commit e22078e

Please sign in to comment.