Skip to content

Commit

Permalink
Default the boolean flag and re-generate doc page
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisroberts committed May 20, 2016
1 parent 5a83b55 commit 3ccf2c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/command-config.md
Expand Up @@ -941,7 +941,7 @@ $ sfn lint
| | Default | |
| `--local-rule-sets-only` | Description | Only apply rule sets provided by lint directory |
| | Valid | `TrueClass`, `FalseClass` |
| | Default | |
| | Default | false|
| `--nesting-bucket` | Description | Bucket to use for storing nested stack templates |
| | Valid | `String` |
| | Default | |
Expand Down
3 changes: 2 additions & 1 deletion lib/sfn/config/lint.rb
Expand Up @@ -21,7 +21,8 @@ class Lint < Validate
)
attribute(
:local_rule_sets_only, [TrueClass, FalseClass],
:description => 'Only apply rule sets provided by lint directory'
:description => 'Only apply rule sets provided by lint directory',
:default => false
)
end
end
Expand Down

0 comments on commit 3ccf2c6

Please sign in to comment.