• Vitaliy Makogon's avatar
    fix(tslint): fix tslint errors (#4770) · d01c5331
    Vitaliy Makogon authored
    * fix(carousel): fix tslint errors
    
    * fix(dropdown): fix tslint errors
    
    * fix(rating): fix tslint errors in rating component
    
    * fix(pagination): fix tslint errors
    
    * fix(positioning): fix tslint errors
    
    * fix(rating): fix tslint errors in src/rating component
    
    * fix(modal): fix tslint issues
    
    * fix(timepicker): fix tslint errors
    
    * fix(typeahead): fix tslint issues
    
    * Update tslint.json
    
    * Update tslint.json
    
    * fix(accordion): fix tslint errors into accordion
    
    * fix(tooltip/progressbar/tabs): fix tslint errors of tooltip, progressbar, tabs components
    
    * fix(tslint): clean up
    
    * fix(buttons): fix tslint errors
    
    * fix(tslint): clean up
    
    * clean up
    
    * feat(hook): add pre-push hook
    
    * fix(tslint): fix tslint errors && add pre-push hook
    d01c5331
tslint.json 995 Bytes
{
  "extends": "tslint-config-valorsoft",
  "rulesDirectory": "./node_modules/codelyzer",
  "rules": {
    "import-blacklist": [true, "rxjs/Rx", "lodash"],
    "member-access": [true, "no-public"],
    "no-void-expression": ["ignore-arrow-function-shorthand"],
    "space-before-function-paren": [true, {"anonymous": "always", "named": "never", "asyncArrow": "always"}],
    "use-host-property-decorator": false,
    "no-parameter-properties": false,
    "typedef": true,
    "no-forward-ref": false,
    "no-null-keyword": false,
    "only-arrow-functions": false,
    "directive-selector": false,
    "component-selector": false,
    "no-magic-numbers": false,
    "no-any": false,
    "prefer-object-spread": false,
    "prefer-for-of": false,
    "angular-whitespace": false,
    "use-view-encapsulation": false,
    "typeof-compare": false,
    "templates-use-public": false,
    "no-access-missing-member": false,
    "invoke-injectable": false,
    "template-to-ng-template": false
  }
}