refactor: improve cspell dectionaries

This commit is contained in:
Mark Lawlor
2022-06-05 19:32:01 +10:00
parent 0b483eafd3
commit 5a19c33a4d
5 changed files with 21 additions and 14 deletions

7
.cspell/project.txt Normal file
View File

@@ -0,0 +1,7 @@
marklawlor
lawlor
commitlint
moti
solito
atrule
nextjs

2
.cspell/react-native.txt Normal file
View File

@@ -0,0 +1,2 @@
pressable
androidcolor

View File

@@ -1,3 +1,3 @@
module.exports = {
content: ["./dont-match-anything"],
content: ["./do-not-match-anything"],
};

View File

@@ -16,21 +16,19 @@
"website/static/*",
"website/src/css/*"
],
"dictionaries": ["tailwind-words"],
"dictionaries": ["tailwind", "project", "react-native"],
"dictionaryDefinitions": [
{
"name": "tailwind-words",
"path": "./.cspell/tailwind-words.txt"
"name": "tailwind",
"path": "./.cspell/tailwind.txt"
},
{
"name": "project",
"path": "./.cspell/project.txt"
},
{
"name": "react-native",
"path": "./.cspell/react-native.txt"
}
],
"words": [
"pressable",
"marklawlor",
"commitlint",
"lawlor",
"moti",
"solito",
"atrule",
"nextjs"
]
}