PokéScript Language support for Visual Studio Code.

tslint.json 247B

123456789101112131415
  1. {
  2. "rules": {
  3. "no-string-throw": true,
  4. "no-unused-expression": true,
  5. "no-duplicate-variable": true,
  6. "curly": true,
  7. "class-name": true,
  8. "semicolon": [
  9. true,
  10. "always"
  11. ],
  12. "triple-equals": true
  13. },
  14. "defaultSeverity": "warning"
  15. }