You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
134 lines
4.4 KiB
134 lines
4.4 KiB
// cspell default configuration |
|
{ |
|
// Version of the setting file. Always 0.1 |
|
"version": "0.1", |
|
// name - the name of this configuration |
|
"name": "cspell default json", |
|
// id - id of this file |
|
"id": "cspell-default", |
|
// language - current active spelling language |
|
"language": "en", |
|
// description |
|
"description": "Default cspell configuration.", |
|
// words - list of words to be always considered correct |
|
"words": [], |
|
// flagWords - list of words to be always considered incorrect |
|
"flagWords": [], |
|
"maxNumberOfProblems": 10000, |
|
"ignorePaths": [], |
|
"allowCompoundWords": false, |
|
"dictionaryDefinitions": [], |
|
"languageSettings": [ |
|
{ |
|
"languageId": "*", |
|
"dictionaries": ["companies", "softwareTerms", "filetypes"] |
|
}, |
|
{ |
|
"languageId": "csharp", |
|
"allowCompoundWords": true, |
|
"dictionaries": ["csharp", "dotnet", "npm"] |
|
}, |
|
{ |
|
"languageId": "javascript,javascriptreact", |
|
"dictionaries": ["typescript", "node", "npm"] |
|
}, |
|
{ |
|
"languageId": "typescript,typescriptreact,mdx", |
|
"dictionaries": ["typescript", "node", "npm"] |
|
}, |
|
{ |
|
"languageId": "javascriptreact,typescriptreact,mdx", |
|
"dictionaries": ["html", "html-symbol-entities", "css", "fonts"] |
|
}, |
|
{ |
|
"languageId": "markdown,asciidoc", |
|
"dictionaries": ["npm", "html", "html-symbol-entities"] |
|
}, |
|
{ |
|
"languageId": "html,pug,jade,php,handlebars", |
|
"dictionaries": ["html", "fonts", "typescript", "css", "npm", "html-symbol-entities"] |
|
}, |
|
{ |
|
"languageId": "json,jsonc", |
|
"dictionaries": ["node", "npm"] |
|
}, |
|
{ |
|
"languageId": "php", |
|
"dictionaries": ["php"] |
|
}, |
|
{ |
|
"languageId": "css,less,scss", |
|
"dictionaries": ["fonts", "css"] |
|
}, |
|
{ |
|
"languageId": "map", |
|
"enabled": false |
|
}, |
|
{ |
|
"languageId": "image", |
|
"enabled": false |
|
}, |
|
{ |
|
"languageId": "binary", |
|
"enabled": false |
|
}, |
|
{ |
|
"languageId": "markdown,html,mdx", |
|
"ignoreRegExpList": ["/&[a-z]+;/g"] |
|
}, |
|
{ |
|
"languageId": "html", |
|
"ignoreRegExpList": ["href"] |
|
}, |
|
{ |
|
"languageId": "markdown", |
|
"ignoreRegExpList": ["/(?<=\\])\\[[^\\]]+\\]/", "/\\[[^\\]]+\\]:/"] |
|
}, |
|
{ |
|
"languageId": "*", |
|
"local": "en,en-US,en-GB", |
|
"description": "Define possessive_s", |
|
"patterns": [ |
|
{ |
|
"name": "possessive_s", |
|
"pattern": "/(?:'|`|’)s\\b/gi" |
|
} |
|
] |
|
} |
|
], |
|
"import": [ |
|
"@cspell/dict-aws/cspell-ext.json", |
|
"@cspell/dict-bash/cspell-ext.json", |
|
"@cspell/dict-companies/cspell-ext.json", |
|
"@cspell/dict-cpp/cspell-ext.json", |
|
"@cspell/dict-cryptocurrencies/cspell-ext.json", |
|
"@cspell/dict-csharp/cspell-ext.json", |
|
"@cspell/dict-css/cspell-ext.json", |
|
"@cspell/dict-django/cspell-ext.json", |
|
"@cspell/dict-dotnet/cspell-ext.json", |
|
"@cspell/dict-elixir/cspell-ext.json", |
|
"@cspell/dict-en_us/cspell-ext.json", |
|
"@cspell/dict-en-gb/cspell-ext.json", |
|
"@cspell/dict-filetypes/cspell-ext.json", |
|
"@cspell/dict-fonts/cspell-ext.json", |
|
"@cspell/dict-fullstack/cspell-ext.json", |
|
"@cspell/dict-golang/cspell-ext.json", |
|
"@cspell/dict-haskell/cspell-ext.json", |
|
"@cspell/dict-html/cspell-ext.json", |
|
"@cspell/dict-html-symbol-entities/cspell-ext.json", |
|
"@cspell/dict-java/cspell-ext.json", |
|
"@cspell/dict-latex/cspell-ext.json", |
|
"@cspell/dict-lorem-ipsum/cspell-ext.json", |
|
"@cspell/dict-lua/cspell-ext.json", |
|
"@cspell/dict-node/cspell-ext.json", |
|
"@cspell/dict-npm/cspell-ext.json", |
|
"@cspell/dict-php/cspell-ext.json", |
|
"@cspell/dict-powershell/cspell-ext.json", |
|
"@cspell/dict-python/cspell-ext.json", |
|
"@cspell/dict-ruby/cspell-ext.json", |
|
"@cspell/dict-rust/cspell-ext.json", |
|
"@cspell/dict-scala/cspell-ext.json", |
|
"@cspell/dict-software-terms/cspell-ext.json", |
|
"@cspell/dict-typescript/cspell-ext.json" |
|
] |
|
}
|
|
|