Skip to content

Commit

Permalink
Update Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mariawix committed Nov 19, 2015
1 parent 3c30cad commit 88c5d61
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Finally, enable all of the rules that you would like to use.
"rules": {
"lodash3/prop-shorthand": 1,
"lodash3/matches-prop-shorthand": 1,
"lodash3/matches-shorthand": 1,
"lodash3/prefer-chain": 1,
"lodash3/preferred-alias": 1,
"lodash3/no-single-chain": 1,
Expand Down Expand Up @@ -60,6 +61,7 @@ Finally, enable all of the rules that you would like to use.

* [prop-shorthand](docs/rules/prop-shorthand.md): Prefer property shorthand syntax
* [matches-prop-shorthand](docs/rules/matches-prop-shorthand.md): Prefer matches property shorthand syntax
* [matches-prop-shorthand](docs/rules/matches-shorthand.md): Prefer matches shorthand syntax
* [preferred-alias](docs/rules/preferred-alias.md): Preferred aliases
* [prefer-chain](docs/rules/prefer-chain.md): Prefer chain over nested lodash calls
* [no-single-chain](docs/rules/no-single-chain.md): Prevent chaining syntax for single method, e.g. `_(x).map().value()`
Expand Down
2 changes: 1 addition & 1 deletion docs/rules/matches-prop-shorthand.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ When using certain method in lodash such as filter, code can be shorter and more

## Rule Details

This rule takes one argument, maximum path length.
This rule takes no arguments.

The following patterns are considered warnings:

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/matches-shorthand.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ When using certain method in lodash such as filter, code can be shorter and more

## Rule Details

This rule takes no arguments.
This rule takes one argument, maximum path length.

The following patterns are considered warnings:

Expand Down

0 comments on commit 88c5d61

Please sign in to comment.