Guest User

Untitled

a guest
Feb 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. {
  2. "extends": ["tslint:recommended", "tslint-react"],
  3. "rules": {
  4. "arrow-parens": false,
  5. "arrow-return-shorthand": [false],
  6. "comment-format": [true, "check-space"],
  7. "import-blacklist": [true, "rxjs"],
  8. "interface-over-type-literal": false,
  9. "interface-name": false,
  10. "max-line-length": [true, 120],
  11. "member-access": false,
  12. "member-ordering": [true, { "order": "fields-first" }],
  13. "newline-before-return": false,
  14. "no-any": false,
  15. "no-empty-interface": false,
  16. "no-import-side-effect": [true],
  17. "no-inferrable-types": [true, "ignore-params", "ignore-properties"],
  18. "no-invalid-this": [true, "check-function-in-method"],
  19. "no-null-keyword": false,
  20. "no-require-imports": false,
  21. "no-submodule-imports": false,
  22. "no-this-assignment": [true, { "allow-destructuring": true }],
  23. "no-trailing-whitespace": true,
  24. "no-var-requires": false,
  25. "object-literal-sort-keys": false,
  26. "object-literal-shorthand": false,
  27. "one-variable-per-declaration": [false],
  28. "only-arrow-functions": [true, "allow-declarations"],
  29. "ordered-imports": [false],
  30. "prefer-method-signature": false,
  31. "prefer-template": [true, "allow-single-concat"],
  32. "quotemark": [true, "single"],
  33. "semicolon": [true, "always"],
  34. "trailing-comma": [true, {
  35. "singleline": "never",
  36. "multiline": {
  37. "objects": "never",
  38. "arrays": "never",
  39. "functions": "never",
  40. "typeLiterals": "ignore"
  41. },
  42. "esSpecCompliant": true
  43. }],
  44. "triple-equals": [true, "allow-null-check"],
  45. "type-literal-delimiter": true,
  46. "typedef": [true, "property-declaration"],
  47. "variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore"],
  48. "jsx-no-lambda": false,
  49. "jsx-boolean-value" : ["never"]
  50. }
  51. }
Add Comment
Please, Sign In to add comment