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:
authorChris Rebert <github@chrisrebert.com>2015-11-25 10:55:06 +0300
committerChris Rebert <github@chrisrebert.com>2015-11-25 10:55:06 +0300
commitcd90fad9942fdb4c4c0c5625eb2e0d6260296937 (patch)
tree784a0bdb117df6330128918d0e7c05f89589b3ea /README.md
parent1e68ab08e9347fb08bfb6e14775a9d9c860c090b (diff)
README: Nomenclature: s/mask/glob/
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index fbad196..b47f05f 100644
--- a/README.md
+++ b/README.md
@@ -92,7 +92,7 @@ Shows all errors and warnings before stopping the task. (Overrides `stoponerror`
Array of [bootlint problem ID codes][] (`String`s) to explicitly ignore.
-Object of [bootlint problem ID codes][] as **keys** and filepath masks as array **value**.
+Object of [bootlint problem ID codes][] as **keys** and filepath globs as array **value**.
##### Example
@@ -101,7 +101,7 @@ relaxerror: {
'E001': [],
'W005': [
'path/to/file.html',
- 'file/path/*.mask'
+ 'file/path/*.glob'
]
},
```