diff --git a/.github/ISSUE_TEMPLATE/NEW_SYNTAX.md b/.github/ISSUE_TEMPLATE/NEW_SYNTAX.md index 5f87438e0642..f3ac551f6ba8 100644 --- a/.github/ISSUE_TEMPLATE/NEW_SYNTAX.md +++ b/.github/ISSUE_TEMPLATE/NEW_SYNTAX.md @@ -32,12 +32,14 @@ assignees: '' Please check off all items that have already been completed. Be sure to paste the pull request URLs next to each item so we can verify the work as done. -* [ ] Ecma262 update: -* [ ] ESTree update: -* [ ] Acorn update: -* [ ] `eslint-visitor-keys` update: -* [ ] `espree` update: -* [ ] `eslint-scope` update: -* [ ] `eslint` update: +- [ ] Ecma262 update: +- [ ] ESTree update: +- [ ] Acorn update: +- [ ] `eslint-visitor-keys` update: +- [ ] `espree` update: +- [ ] `eslint-scope` update: +- [ ] `eslint` update: **Are you willing to submit a pull request to implement this syntax?** + + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 7408a4af29bc..593e8f784219 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -6,7 +6,7 @@ #### Prerequisites checklist -* [ ] I have read the [contributing guidelines](https://github.com/eslint/eslint/blob/HEAD/CONTRIBUTING.md). +- [ ] I have read the [contributing guidelines](https://github.com/eslint/eslint/blob/HEAD/CONTRIBUTING.md). #### What is the purpose of this pull request? (put an "X" next to an item) @@ -43,3 +43,5 @@ #### What changes did you make? (Give an overview) #### Is there anything you'd like reviewers to focus on? + + diff --git a/Makefile.js b/Makefile.js index b5fbe4f62288..10203f5ed4a2 100644 --- a/Makefile.js +++ b/Makefile.js @@ -886,7 +886,7 @@ target.checkRuleFiles = function() { } // check for proper doc headers - if (!hasKnownHeaders(basename)) { + if (!hasKnownHeaders()) { console.error("Unknown or misplaced header in the doc page of rule %s, allowed headers (and their order) are: '%s'", basename, knownHeaders.join("', '")); errors++; }