Skip to content

Commit

Permalink
Merge pull request #4172 from eslint/issue4155
Browse files Browse the repository at this point in the history
Fix: id-match schema (fixes #4155)
  • Loading branch information
nzakas committed Oct 16, 2015
2 parents acddaa0 + 6f1e77f commit 34d4adc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/rules/id-match.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* @fileoverview Rule to flag non-matching identifiers
* @author Matthieu Larcher
* @copyright 2015 Matthieu Larcher. All rights reserved.
* See LICENSE in root directory for full license.
*/

"use strict";
Expand Down Expand Up @@ -121,7 +122,7 @@ module.exports.schema = [
"type": "object",
"properties": {
"properties": {
"enum": [true, false]
"type": "boolean"
}
}
}
Expand Down

0 comments on commit 34d4adc

Please sign in to comment.