mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-28 07:03:17 +08:00
f4fa68031e
* develop: (21 commits) Theme update from release 9.2 testcode Delete dependabot.yml changed cspell config in eslint from warn to error Update .eslintrc.json fix cypress tests for erDiagram, add eslint-plugin-no-only-tests plugin because of this comment: https://github.com/mermaid-js/mermaid/pull/3647#issuecomment-1281163858 chore: Add CORS to vite dev configured 3 more words in cspell.json removed eslint-ignore statements chore(deps): pin dependencies chore(deps): update all non-major dependencies (#3671) style(sequence): rename lineStarty to lineStartY style: fix @cspell/eslint warnings test(gantt): remove incorrect comment added words to cspell ignore words list, removed mywords.txt update: open graph image fix: prettier remove id attribute feat(issue#3675): added open graph meta tags updated eslint config and fixed cspell warnings ...
123 lines
2.5 KiB
JSON
123 lines
2.5 KiB
JSON
{
|
|
"version": "0.2",
|
|
"language": "en",
|
|
"words": [
|
|
"gantt",
|
|
"mindmaps",
|
|
"visio",
|
|
"colour",
|
|
"customizability",
|
|
"flatmap",
|
|
"jison",
|
|
"mermiad",
|
|
"mindmap",
|
|
"mitigations",
|
|
"sandboxed",
|
|
"santize",
|
|
"stylis",
|
|
"verdana",
|
|
"xlink"
|
|
],
|
|
"ignoreWords": [
|
|
"adamiecki",
|
|
"asciidoctor",
|
|
"ashish",
|
|
"astah",
|
|
"bilkent",
|
|
"bisheng",
|
|
"docsy",
|
|
"doku",
|
|
"gitea",
|
|
"gitgraph",
|
|
"grav",
|
|
"inkdrop",
|
|
"jaoude",
|
|
"kaufmann",
|
|
"knut",
|
|
"lucida",
|
|
"plantuml",
|
|
"playfair's",
|
|
"podlite",
|
|
"sveidqvist",
|
|
"tuleap",
|
|
"acyclicer",
|
|
"antiscript",
|
|
"applitools",
|
|
"bbox",
|
|
"codedoc",
|
|
"cpettitt",
|
|
"cytoscape",
|
|
"dagre",
|
|
"descr",
|
|
"docsify",
|
|
"edgechromium",
|
|
"graphlib",
|
|
"knsv",
|
|
"mdbook",
|
|
"mermerd",
|
|
"mkdocs",
|
|
"phpbb",
|
|
"ranksep",
|
|
"redmine",
|
|
"setupgraphviewbox",
|
|
"sphinxcontrib",
|
|
"substate",
|
|
"techn",
|
|
"ts-nocheck",
|
|
"viewports",
|
|
"vitepress"
|
|
],
|
|
"patterns": [
|
|
{
|
|
"name": "Markdown links",
|
|
"pattern": "\\((.*)\\)",
|
|
"description": ""
|
|
},
|
|
{
|
|
"name": "Markdown code blocks",
|
|
"pattern": "/^(\\s*`{3,}).*[\\s\\S]*?^\\1/gmx",
|
|
"description": "Taken from the cSpell example at https://cspell.org/configuration/patterns/#verbose-regular-expressions"
|
|
},
|
|
{
|
|
"name": "Inline code blocks",
|
|
"pattern": "\\`([^\\`\\r\\n]+?)\\`",
|
|
"description": "https://stackoverflow.com/questions/41274241/how-to-capture-inline-markdown-code-but-not-a-markdown-code-fence-with-regex"
|
|
},
|
|
{
|
|
"name": "Link contents",
|
|
"pattern": "\\<a(.*)\\>",
|
|
"description": ""
|
|
},
|
|
{
|
|
"name": "Snippet references",
|
|
"pattern": "-- snippet:(.*)",
|
|
"description": ""
|
|
},
|
|
{
|
|
"name": "Snippet references 2",
|
|
"pattern": "\\<\\[sample:(.*)",
|
|
"description": "another kind of snippet reference"
|
|
},
|
|
{
|
|
"name": "Multi-line code blocks",
|
|
"pattern": "/^\\s*```[\\s\\S]*?^\\s*```/gm"
|
|
},
|
|
{
|
|
"name": "HTML Tags",
|
|
"pattern": "<[^>]*>",
|
|
"description": "Reference: https://stackoverflow.com/questions/11229831/regular-expression-to-remove-html-tags-from-a-string"
|
|
}
|
|
],
|
|
"ignoreRegExpList": [
|
|
"Markdown links",
|
|
"Markdown code blocks",
|
|
"Inline code blocks",
|
|
"Link contents",
|
|
"Snippet references",
|
|
"Snippet references 2",
|
|
"Multi-line code blocks",
|
|
"HTML Tags"
|
|
],
|
|
"ignorePaths": ["packages/mermaid/src/docs/CHANGELOG.md"]
|
|
}
|