Skip to content

Commit

Permalink
docs: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mgechev committed Jun 20, 2017
1 parent a35fda7 commit 6656b81
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -4,7 +4,7 @@

- `angular-whitespace: [true, 'check-interpolation', 'check-pipe']` - Checks if there's whitespace around an expression surrounded by interpolation characters, and after a pipe symbol.
- `banana-in-box: true` - Checks for proper banana in a box syntax - `[(ngModel)]` instead of `([ngModel])`.
- `no-negated-async: true` - Enforces `(foo | async) === false`, rather than `!(foo | async)`, because of the initial falsy value emitted.
- `templates-no-negated-async: true` - Enforces `(foo | async) === false`, rather than `!(foo | async)`, because of the initial falsy value emitted.
- `use-view-encapsulation: true` - Enforces enabled view encapsulation.

**Special thanks to [@wKoza](https://github.com/wKoza), [@GregOnNet](https://github.com/GregOnNet) and [@connor4312](https://github.com/connor4312) for their contributions.**
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -64,7 +64,7 @@ Create the following `tslint.json` file like:
"rules":{
"angular-whitespace": [true, "check-interpolation", "check-pipe"],
"banana-in-box": true,
"no-negated-async": true,
"templates-no-negated-async": true,
"directive-selector": [true, "attribute", "sg", "camelCase"],
"component-selector": [true, "element", "sg", "kebab-case"],
"use-input-property-decorator": true,
Expand Down Expand Up @@ -114,7 +114,7 @@ Now create the following `tslint.json` file where your `node_modules` directory
"rules":{
"angular-whitespace": [true, "check-interpolation", "check-pipe"],
"banana-in-box": true,
"no-negated-async": true,
"templates-no-negated-async": true,
"directive-selector": [true, "attribute", "sg", "camelCase"],
"component-selector": [true, "element", "sg", "kebab-case"],
"use-input-property-decorator": true,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -63,7 +63,7 @@
"rxjs": "5.0.1",
"ts-node": "1.2.2",
"tslint": "^5.0.0",
"typescript": "^2.1.4",
"typescript": "^2.4.0",
"zone.js": "^0.8.4",
"js-yaml": "^3.8.4",
"json-stringify-pretty-compact": "^1.0.4",
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Expand Up @@ -1423,9 +1423,9 @@ type-detect@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2"

typescript@^2.1.4:
version "2.1.4"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.1.4.tgz#b53b69fb841126acb1dd4b397d21daba87572251"
typescript@^2.4.0:
version "2.4.0"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.4.0.tgz#aef5a8d404beba36ad339abf079ddddfffba86dd"

util-deprecate@~1.0.1:
version "1.0.2"
Expand Down

0 comments on commit 6656b81

Please sign in to comment.