github.com/quickfeed/quickfeed@v0.0.0-20240507093252-ed8ca812a09c/.vscode/cspell.json (about)

     1  {
     2      // flagWords - list of words to be always considered incorrect.
     3      // This is useful for common spelling errors too short to be considered.
     4      // For example "hte" should be "the"
     5      "flagWords": [
     6          "hte",
     7          "teh"
     8      ],
     9      "dictionaries": [
    10          "quickfeed-words"
    11      ],
    12      "dictionaryDefinitions": [
    13          {
    14              "name": "quickfeed-words",
    15              "path": "./quickfeed-words.txt",
    16              // Some extensions use `addWords` for adding words to your personal dictionary.
    17              "addWords": true
    18          }
    19      ]
    20  }