UNPKG

cspell

Version:

A Spelling Checker for Code!

54 lines (52 loc) 2.77 kB
// 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", "misc", "filetypes"] }, { "languageId": "csharp", "allowCompoundWords": true, "dictionaries": ["csharp", "dotnet", "npm"] }, { "languageId": "javascript,javascriptreact", "dictionaries": ["typescript", "node", "npm"] }, { "languageId": "typescript,typescriptreact", "dictionaries": ["typescript", "node", "npm"] }, { "languageId": "javascriptreact,typescriptreact", "dictionaries": ["html", "css", "fonts"] }, { "languageId": "markdown,asciidoc", "dictionaries": ["npm", "html"] }, { "languageId": "html,pug,jade", "dictionaries": ["html", "fonts", "typescript", "css", "npm"] }, { "languageId": "handlebars", "dictionaries": ["html", "css", "fonts", "typescript"] }, { "languageId": "json", "dictionaries": ["node", "npm"] }, { "languageId": "php", "dictionaries": ["php", "html", "fonts", "css", "typescript", "npm"] }, { "languageId": "css,less,scss", "dictionaries": ["fonts", "css"] }, { "languageId": "map", "enabled": false }, { "languageId": "image", "enabled": false }, { "languageId": "binary", "enabled": false }, { "languageId": "html", "ignoreRegExpList": ["href"] } ], "import": [ "node_modules/cspell-dict-cpp/cspell-ext.json", "node_modules/cspell-dict-django/cspell-ext.json", "node_modules/cspell-dict-en_us/cspell-ext.json", "node_modules/cspell-dict-en-gb/cspell-ext.json", "node_modules/cspell-dict-golang/cspell-ext.json", "node_modules/cspell-dict-latex/cspell-ext.json", "node_modules/cspell-dict-php/cspell-ext.json", "node_modules/cspell-dict-python/cspell-ext.json", "node_modules/cspell-dict-rust/cspell-ext.json" ] }