Skip to content
This repository has been archived by the owner on Feb 14, 2021. It is now read-only.

Commit

Permalink
fix(ordered-imports): disabled some rules
Browse files Browse the repository at this point in the history
  • Loading branch information
valorkin committed Aug 5, 2016
1 parent 9a3aa44 commit 3e943d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"no-consecutive-blank-lines": true,
"no-console": true,
"no-construct": true,
"no-constructor-vars": true,
"no-constructor-vars": false,
"no-debugger": true,
"no-default-export": false,
"no-duplicate-key": true,
Expand Down Expand Up @@ -60,7 +60,7 @@
],
"one-variable-per-declaration": true,
"only-arrow-functions": true,
"ordered-imports": true,
"ordered-imports": false,
"quotemark": [true, "single"],
"radix": true,
"semicolon": [true, "always"],
Expand Down Expand Up @@ -95,7 +95,7 @@
"component-selector-prefix": [true, ""],
"use-input-property-decorator": true,
"use-output-property-decorator": true,
"use-host-property-decorator": true,
"use-host-property-decorator": false,
"no-attribute-parameter-decorator": true,
"no-input-rename": true,
"no-output-rename": true,
Expand Down

0 comments on commit 3e943d0

Please sign in to comment.