settings.json 820 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "editor.autoClosingBrackets": "always",
  3. "editor.autoClosingQuotes": "always",
  4. "editor.defaultFormatter": "streetsidesoftware.code-spell-checker-russian",
  5. "cSpell.caseSensitive": true,
  6. "cSpell.language": "ru,en",
  7. "cSpell.autoFormatConfigFile": true,
  8. "cSpell.diagnosticLevel": "Error",
  9. "cSpell.diagnosticLevelFlaggedWords": "Error",
  10. "cSpell.validateDirectives": true,
  11. "textlint.autoFixOnSave": true,
  12. "cSpell.ignorePaths": [
  13. "package-lock.json",
  14. "node_modules",
  15. "vscode-extension",
  16. ".git/{info,lfs,logs,refs,objects}/**",
  17. ".git/{index,*refs,*HEAD}",
  18. ".vscode",
  19. ".vscode-insiders",
  20. "package.json"
  21. ],
  22. "cSpell.words": [
  23. "textlint",
  24. "Госключ",
  25. "УКЭП",
  26. "УНЭП"
  27. ],
  28. "triggerTaskOnSave.tasks": {
  29. "Check File Length": ["*.txt"]
  30. }
  31. }