socialnetworknews-web

A open-source Paper.li clone
git clone git://archive.git.mtrnord.blog/SocialNetworkNews/socialnetworknews-web.git
Log | Files | Refs | README | LICENSE

tslint.json (3027B)


      1 {
      2   "rulesDirectory": [
      3     "node_modules/codelyzer"
      4   ],
      5   "rules": {
      6     "arrow-return-shorthand": true,
      7     "callable-types": true,
      8     "class-name": true,
      9     "comment-format": [
     10       true,
     11       "check-space"
     12     ],
     13     "curly": true,
     14     "deprecation": {
     15       "severity": "warn"
     16     },
     17     "eofline": true,
     18     "forin": true,
     19     "import-blacklist": [
     20       true,
     21       "rxjs/Rx"
     22     ],
     23     "import-spacing": true,
     24     "indent": [
     25       true,
     26       "spaces"
     27     ],
     28     "interface-over-type-literal": true,
     29     "label-position": true,
     30     "max-line-length": [
     31       true,
     32       280
     33     ],
     34     "member-access": false,
     35     "member-ordering": [
     36       true,
     37       {
     38         "order": [
     39           "static-field",
     40           "instance-field",
     41           "static-method",
     42           "instance-method"
     43         ]
     44       }
     45     ],
     46     "no-arg": true,
     47     "no-bitwise": true,
     48     "no-console": [
     49       true,
     50       "debug",
     51       "info",
     52       "time",
     53       "timeEnd",
     54       "trace"
     55     ],
     56     "no-construct": true,
     57     "no-debugger": true,
     58     "no-duplicate-super": true,
     59     "no-empty": false,
     60     "no-empty-interface": true,
     61     "no-eval": true,
     62     "no-inferrable-types": [
     63       true,
     64       "ignore-params"
     65     ],
     66     "no-misused-new": true,
     67     "no-non-null-assertion": true,
     68     "no-shadowed-variable": true,
     69     "no-string-literal": false,
     70     "no-string-throw": true,
     71     "no-switch-case-fall-through": true,
     72     "no-trailing-whitespace": true,
     73     "no-unnecessary-initializer": true,
     74     "no-unused-expression": true,
     75     "no-use-before-declare": true,
     76     "no-var-keyword": true,
     77     "object-literal-sort-keys": false,
     78     "one-line": [
     79       true,
     80       "check-open-brace",
     81       "check-catch",
     82       "check-else",
     83       "check-whitespace"
     84     ],
     85     "prefer-const": true,
     86     "quotemark": [
     87       true,
     88       "single"
     89     ],
     90     "radix": true,
     91     "semicolon": [
     92       true,
     93       "always"
     94     ],
     95     "triple-equals": [
     96       true,
     97       "allow-null-check"
     98     ],
     99     "typedef-whitespace": [
    100       true,
    101       {
    102         "call-signature": "nospace",
    103         "index-signature": "nospace",
    104         "parameter": "nospace",
    105         "property-declaration": "nospace",
    106         "variable-declaration": "nospace"
    107       }
    108     ],
    109     "typeof-compare": true,
    110     "unified-signatures": true,
    111     "variable-name": false,
    112     "whitespace": [
    113       true,
    114       "check-branch",
    115       "check-decl",
    116       "check-operator",
    117       "check-separator",
    118       "check-type"
    119     ],
    120     "directive-selector": [
    121       true,
    122       "attribute",
    123       "app",
    124       "camelCase"
    125     ],
    126     "component-selector": [
    127       true,
    128       "element",
    129       "app",
    130       "kebab-case"
    131     ],
    132     "no-output-on-prefix": true,
    133     "use-input-property-decorator": true,
    134     "use-output-property-decorator": true,
    135     "use-host-property-decorator": true,
    136     "no-input-rename": false,
    137     "no-output-rename": true,
    138     "use-life-cycle-interface": true,
    139     "use-pipe-transform-interface": true,
    140     "component-class-suffix": true,
    141     "directive-class-suffix": true
    142   }
    143 }