feat(spell): applied spell check it works by hook if you install packages, complete partly #4

This commit is contained in:
Konrad Geletey 2023-04-11 20:04:43 +03:00
parent 5738df5060
commit e1d85bc651
Signed by: kglt
GPG key ID: 386DEE24B60BD996
6 changed files with 1189 additions and 0 deletions

16
package.json5 Normal file
View file

@ -0,0 +1,16 @@
{
private: true,
scripts: {
spell: 'cspell lint -c .cspell.json "**/*.md"',
},
devDependencies: {
'@cspell/dict-en-gb': '^4.1.12',
'@cspell/dict-fullstack': '^3.1.5',
'@cspell/dict-latex': '^4.0.0',
'@cspell/dict-markdown': '^2.0.1',
'@cspell/dict-ru_ru': '^2.0.5',
'@cspell/dict-software-terms': '^3.1.6',
'@evilmartians/lefthook': '^1.3.9',
cspell: '^6.30.2',
},
}