Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.54 KB | None | 0 0
  1. {
  2.   "rules": {
  3.     "adjacent-overload-signatures": true,
  4.     "ban-ts-ignore": true,
  5.     "ban-types": false,
  6.     "member-access": true,
  7.     "member-ordering": [
  8.       true,
  9.       {
  10.         "order": [
  11.           "public-static-field",
  12.           "protected-static-field",
  13.           "private-static-field",
  14.           "public-static-method",
  15.           "protected-static-method",
  16.           "private-static-method",
  17.           "public-instance-field",
  18.           "protected-instance-field",
  19.           "private-instance-field",
  20.           "public-constructor",
  21.           "protected-constructor",
  22.           "private-constructor",
  23.           "public-instance-method",
  24.           "protected-instance-method",
  25.           "private-instance-method"
  26.         ],
  27.         "alphabetize": false
  28.       }
  29.     ],
  30.     "no-any": true,
  31.     "no-empty-interface": true,
  32.     "no-import-side-effect": true,
  33.     "no-inferrable-types": false,
  34.     "no-internal-module": true,
  35.     "no-magic-numbers": true,
  36.     "no-namespace": false,
  37.     "no-non-null-assertion": true,
  38.     "no-parameter-reassignment": true,
  39.     "no-reference": true,
  40.     "no-unnecessary-type-assertion": true,
  41.     "no-var-requires": true,
  42.     "only-arrow-functions": true,
  43.     "prefer-for-of": true,
  44.     "promise-function-async": true,
  45.     "typedef": [
  46.       true,
  47.       "call-signature",
  48.       "arrow-call-signature",
  49.       "parameter",
  50.       "arrow-parameter",
  51.       "property-declaration",
  52.       "variable-declaration",
  53.       "member-variable-declaration"
  54.     ],
  55.     "unified-signatures": true,
  56.     "await-promise": true,
  57.     "ban-comma-operator": true,
  58.     "curly": true,
  59.     "forin": true,
  60.     "function-constructor": true,
  61.     "label-position": true,
  62.     "no-arg": true,
  63.     "no-async-without-await": true,
  64.     "no-bitwise": true,
  65.     "no-conditional-assignment": true,
  66.     "no-console": true,
  67.     "no-construct": true,
  68.     "no-debugger": true,
  69.     "no-duplicate-super": true,
  70.     "no-duplicate-switch-case": true,
  71.     "no-duplicate-variable": true,
  72.     "no-dynamic-delete": true,
  73.     "no-empty": true,
  74.     "no-eval": true,
  75.     "no-floating-promises": true,
  76.     "no-for-in-array": true,
  77.     "no-implicit-dependencies": true,
  78.     "no-inferred-empty-object-type": true,
  79.     "no-invalid-template-strings": true,
  80.     "no-invalid-this": true,
  81.     "no-misused-new": true,
  82.     "no-null-keyword": false,
  83.     "no-null-undefined-union": false,
  84.     "no-object-literal-type-assertion": true,
  85.     "no-return-await": true,
  86.     "no-shadowed-variable": true,
  87.     "no-sparse-arrays": true,
  88.    
  89.   }
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement