fukuiretu/nuxt-user-agent

View on GitHub
examples/typescript/tslint.json

Summary

Maintainability
Test Coverage
{
  "defaultSeverity": "error",
  "extends": ["tslint-eslint-rules"],
  "jsRules": {},
  "rules": {
    "class-name": true,
    "comment-format": [true, "check-space"],
    "prefer-const": true,
    "indent": [true, "spaces", 2],
    "import-spacing": true,
    "no-duplicate-variable": true,
    "no-eval": true,
    "no-debugger": true,
    "no-internal-module": true,
    "no-unsafe-finally": true,
    "quotemark": [true, "double"],
    "semicolon": [true, "always"],
    "object-curly-spacing": [true, "always"],
    "no-trailing-whitespace": [true, "ignore-comments"],
    "no-reference": true,
    "no-console": [true, "log", "warn", "error"]
  },
  "rulesDirectory": []
}