|
| 1 | +{ |
| 2 | + "version": "0.2", |
| 3 | + "language": "en", |
| 4 | + "words": [ |
| 5 | + "Alloc", |
| 6 | + "analyse", |
| 7 | + "analyser", |
| 8 | + "Analysers", |
| 9 | + "Autofac", |
| 10 | + "bitness", |
| 11 | + "corlib", |
| 12 | + "Cygwin", |
| 13 | + "Diagnoser", |
| 14 | + "diagnosers", |
| 15 | + "disassemblers", |
| 16 | + "disassm", |
| 17 | + "Jits", |
| 18 | + "Jitting", |
| 19 | + "LINQ", |
| 20 | + "microbenchmarking", |
| 21 | + "microbenchmarks", |
| 22 | + "Mispredict", |
| 23 | + "Mispredictions", |
| 24 | + "msbuild", |
| 25 | + "Multimodal", |
| 26 | + "multimodality", |
| 27 | + "netcoreapp", |
| 28 | + "powerplans", |
| 29 | + "Pseudocode", |
| 30 | + "runtimes", |
| 31 | + "Serilog", |
| 32 | + "Tailcall", |
| 33 | + "toolchains", |
| 34 | + "unmanaged" |
| 35 | + ], |
| 36 | + "ignoreWords": [ |
| 37 | + "Akinshin", |
| 38 | + "Andrey", |
| 39 | + "Expecto", |
| 40 | + "Jint", |
| 41 | + "LoongArch64", |
| 42 | + "macrobenchmark", |
| 43 | + "MediatR", |
| 44 | + "Nagórski's", |
| 45 | + "Newtonsoft", |
| 46 | + "NodaTime", |
| 47 | + "Npgsql", |
| 48 | + "Sitnik's", |
| 49 | + "Wojciech", |
| 50 | + "Avalonia", |
| 51 | + "Gitter" |
| 52 | + ], |
| 53 | + "patterns": [ |
| 54 | + { |
| 55 | + "name": "Markdown links", |
| 56 | + "pattern": "\\((.*)\\)", |
| 57 | + "description": "" |
| 58 | + }, |
| 59 | + { |
| 60 | + "name": "Markdown code blocks", |
| 61 | + "pattern": "/^(\\s*`{3,}).*[\\s\\S]*?^\\1/gmx", |
| 62 | + "description": "Taken from the cSpell example at https://cspell.org/configuration/patterns/#verbose-regular-expressions" |
| 63 | + }, |
| 64 | + { |
| 65 | + "name": "Inline code blocks", |
| 66 | + "pattern": "\\`([^\\`\\r\\n]+?)\\`", |
| 67 | + "description": "https://stackoverflow.com/questions/41274241/how-to-capture-inline-markdown-code-but-not-a-markdown-code-fence-with-regex" |
| 68 | + }, |
| 69 | + { |
| 70 | + "name": "Link contents", |
| 71 | + "pattern": "\\<a(.*)\\>", |
| 72 | + "description": "" |
| 73 | + }, |
| 74 | + { |
| 75 | + "name": "Snippet references", |
| 76 | + "pattern": "-- snippet:(.*)", |
| 77 | + "description": "" |
| 78 | + }, |
| 79 | + { |
| 80 | + "name": "Snippet references 2", |
| 81 | + "pattern": "\\<\\[sample:(.*)", |
| 82 | + "description": "another kind of snippet reference" |
| 83 | + }, |
| 84 | + { |
| 85 | + "name": "Multi-line code blocks", |
| 86 | + "pattern": "/^\\s*```[\\s\\S]*?^\\s*```/gm" |
| 87 | + }, |
| 88 | + { |
| 89 | + "name": "HTML Tags", |
| 90 | + "pattern": "<[^>]*>", |
| 91 | + "description": "Reference: https://stackoverflow.com/questions/11229831/regular-expression-to-remove-html-tags-from-a-string" |
| 92 | + } |
| 93 | + ], |
| 94 | + "ignoreRegExpList": [ |
| 95 | + "Markdown links", |
| 96 | + "Markdown code blocks", |
| 97 | + "Inline code blocks", |
| 98 | + "Link contents", |
| 99 | + "Snippet references", |
| 100 | + "Snippet references 2", |
| 101 | + "Multi-line code blocks", |
| 102 | + "HTML Tags" |
| 103 | + ], |
| 104 | + "ignorePaths": [ |
| 105 | + "docs/_changelog/**/*.md", |
| 106 | + "docs/articles/team.md" |
| 107 | + ] |
| 108 | +} |
0 commit comments