forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
77 lines (74 loc) · 3.09 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import searchReplace from 'markdownlint-rule-search-replace'
import markdownlintGitHub from '@github/markdownlint-github'
import { codeFenceLineLength } from './code-fence-line-length.js'
import { imageAltTextEndPunctuation } from './image-alt-text-end-punctuation.js'
import { imageFileKebabCase } from './image-file-kebab-case.js'
import { incorrectAltTextLength } from './image-alt-text-length.js'
import { internalLinksNoLang } from './internal-links-no-lang.js'
import { internalLinksSlash } from './internal-links-slash.js'
import { imageAltTextExcludeStartWords } from './image-alt-text-exclude-start-words.js'
import { listFirstWordCapitalization } from './list-first-word-capitalization.js'
import { linkPunctuation } from './link-punctuation.js'
import {
earlyAccessReferences,
frontmatterEarlyAccessReferences,
} from './early-access-references.js'
import { frontmatterHiddenDocs } from './frontmatter-hidden-docs.js'
import { frontmatterVideoTranscripts } from './frontmatter-video-transcripts.js'
import { yamlScheduledJobs } from './yaml-scheduled-jobs.js'
import { internalLinksOldVersion } from './internal-links-old-version.js'
import { hardcodedDataVariable } from './hardcoded-data-variable.js'
import { githubOwnedActionReferences } from './github-owned-action-references.js'
import { liquidQuotedConditionalArg } from './liquid-quoted-conditional-arg.js'
import { liquidDataReferencesDefined, liquidDataTagFormat } from './liquid-data-tags.js'
import { frontmatterSchema } from './frontmatter-schema.js'
import { codeAnnotations } from './code-annotations.js'
import { frontmatterLiquidSyntax, liquidSyntax } from './liquid-syntax.js'
import { liquidIfTags, liquidIfVersionTags, liquidIfVersionVersions } from './liquid-versioning.js'
import { raiReusableUsage } from './rai-reusable-usage.js'
import { imageNoGif } from './image-no-gif.js'
import { expiredContent, expiringSoon } from './expired-content.js'
const noDefaultAltText = markdownlintGitHub.find((elem) =>
elem.names.includes('no-default-alt-text'),
)
const noGenericLinkText = markdownlintGitHub.find((elem) =>
elem.names.includes('no-generic-link-text'),
)
export const gitHubDocsMarkdownlint = {
rules: [
searchReplace, // Open-source plugin
noDefaultAltText, // markdownlint-github rule
noGenericLinkText, // markdownlint-github rule
codeFenceLineLength,
imageAltTextEndPunctuation,
imageFileKebabCase,
incorrectAltTextLength,
internalLinksNoLang,
internalLinksSlash,
imageAltTextExcludeStartWords,
listFirstWordCapitalization,
linkPunctuation,
earlyAccessReferences,
yamlScheduledJobs,
internalLinksOldVersion,
hardcodedDataVariable,
githubOwnedActionReferences,
liquidQuotedConditionalArg,
liquidDataReferencesDefined,
liquidDataTagFormat,
frontmatterHiddenDocs,
frontmatterEarlyAccessReferences,
frontmatterVideoTranscripts,
frontmatterSchema,
codeAnnotations,
frontmatterLiquidSyntax,
liquidSyntax,
liquidIfTags,
liquidIfVersionTags,
liquidIfVersionVersions,
raiReusableUsage,
imageNoGif,
expiredContent,
expiringSoon,
],
}