Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/grunt-bootlint.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Echola <zac.echola@gmail.com>2014-07-26 11:14:44 +0400
committerZac Echola <zac.echola@gmail.com>2014-07-26 11:14:44 +0400
commitff2d7efc506c0e8ba2b2f4df907d617d8ff36ccd (patch)
treef91664d7bf4f68672cdbdb2a8971248efb803cb1 /README.md
parent84f1b21d60497c9eb17ab7ef5cf554e6e14917c3 (diff)
removing boilerplate.
Diffstat (limited to 'README.md')
-rw-r--r--README.md29
1 files changed, 0 insertions, 29 deletions
diff --git a/README.md b/README.md
index dbec1b6..1a58e5e 100644
--- a/README.md
+++ b/README.md
@@ -37,18 +37,6 @@ grunt.initConfig({
### Options
-#### options.separator
-Type: `String`
-Default value: `', '`
-
-A string value that is used to do something with whatever.
-
-#### options.punctuation
-Type: `String`
-Default value: `'.'`
-
-A string value that is used to do something else with whatever else.
-
### Usage Examples
#### Default Options
@@ -65,23 +53,6 @@ grunt.initConfig({
});
```
-#### Custom Options
-In this example, custom options are used to do something else with whatever else. So if the `testing` file has the content `Testing` and the `123` file had the content `1 2 3`, the generated result in this case would be `Testing: 1 2 3 !!!`
-
-```js
-grunt.initConfig({
- bootlint: {
- options: {
- separator: ': ',
- punctuation: ' !!!',
- },
- files: {
- 'dest/default_options': ['src/testing', 'src/123'],
- },
- },
-});
-```
-
## Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).