mirror of
https://github.com/flame-engine/flame.git
synced 2025-10-30 00:17:20 +08:00
ci: Custom dictionary in cspell to manage more words easily (#2122)
This commit is contained in:
38
.github/.cspell/flame_dictionary.txt
vendored
Normal file
38
.github/.cspell/flame_dictionary.txt
vendored
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
ASDW
|
||||||
|
backtick
|
||||||
|
backticks
|
||||||
|
blockquote
|
||||||
|
broadphase
|
||||||
|
conformant
|
||||||
|
dartdoc
|
||||||
|
dartdocs
|
||||||
|
dashbook
|
||||||
|
discoverability
|
||||||
|
fireslime
|
||||||
|
flippable
|
||||||
|
hitbox
|
||||||
|
linkcheck
|
||||||
|
LTRBR
|
||||||
|
LTWH
|
||||||
|
markdownlint
|
||||||
|
platformer
|
||||||
|
positionable
|
||||||
|
prerendered
|
||||||
|
pressable
|
||||||
|
proxying
|
||||||
|
pubspec
|
||||||
|
raycast
|
||||||
|
raytracing
|
||||||
|
refactor
|
||||||
|
refactoring
|
||||||
|
refactorings
|
||||||
|
renderable
|
||||||
|
socio
|
||||||
|
Strikethrough
|
||||||
|
stylesheet
|
||||||
|
sublists
|
||||||
|
typedef
|
||||||
|
typedefs
|
||||||
|
toctree
|
||||||
|
toctrees
|
||||||
|
vsync
|
||||||
48
.github/cspell.json
vendored
48
.github/cspell.json
vendored
@ -2,48 +2,9 @@
|
|||||||
"version": "0.2",
|
"version": "0.2",
|
||||||
"language": "en",
|
"language": "en",
|
||||||
"flagWords": [],
|
"flagWords": [],
|
||||||
"words": [
|
|
||||||
"ASDW",
|
|
||||||
"backtick",
|
|
||||||
"backticks",
|
|
||||||
"blockquote",
|
|
||||||
"broadphase",
|
|
||||||
"conformant",
|
|
||||||
"dartdoc",
|
|
||||||
"dartdocs",
|
|
||||||
"dashbook",
|
|
||||||
"discoverability",
|
|
||||||
"fireslime",
|
|
||||||
"flippable",
|
|
||||||
"hitbox",
|
|
||||||
"linkcheck",
|
|
||||||
"LTRBR",
|
|
||||||
"LTWH",
|
|
||||||
"markdownlint",
|
|
||||||
"platformer",
|
|
||||||
"positionable",
|
|
||||||
"prerendered",
|
|
||||||
"pressable",
|
|
||||||
"proxying",
|
|
||||||
"raycast",
|
|
||||||
"raytracing",
|
|
||||||
"refactor",
|
|
||||||
"refactoring",
|
|
||||||
"refactorings",
|
|
||||||
"renderable",
|
|
||||||
"socio",
|
|
||||||
"Strikethrough",
|
|
||||||
"stylesheet",
|
|
||||||
"sublists",
|
|
||||||
"typedef",
|
|
||||||
"typedefs",
|
|
||||||
"toctree",
|
|
||||||
"toctrees",
|
|
||||||
"vsync"
|
|
||||||
],
|
|
||||||
"ignorePaths": ["**/media/**", "**/assets/**", "**/test/**"],
|
"ignorePaths": ["**/media/**", "**/assets/**", "**/test/**"],
|
||||||
"ignoreRegExpList": ["@\\w+", "\\$\\w+", "\\{\\w+", "\\`\\w+", "\\:\\w+", "\\/\\w+", "\\#\\w+"],
|
"ignoreRegExpList": ["@\\w+", "\\$\\w+", "\\{\\w+", "\\`\\w+", "\\:\\w+", "\\/\\w+", "\\#\\w+"],
|
||||||
"dictionaries": ["en_US", "softwareTerms"],
|
"dictionaries": ["en_US", "softwareTerms","flame_dictionary"],
|
||||||
"languageSettings": [
|
"languageSettings": [
|
||||||
{
|
{
|
||||||
"languageId": "markdown",
|
"languageId": "markdown",
|
||||||
@ -51,5 +12,12 @@
|
|||||||
"/^\\s*```[\\s\\S]*?^\\s*```/gm"
|
"/^\\s*```[\\s\\S]*?^\\s*```/gm"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
"dictionaryDefinitions": [
|
||||||
|
{
|
||||||
|
"name": "flame_dictionary",
|
||||||
|
"path": "./.cspell/flame_dictionary.txt",
|
||||||
|
"addWords": true
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user