Skip to content

Commit

Permalink
Fix: Rule no-unused-vars had missing period (fixes #6738)
Browse files Browse the repository at this point in the history
The other rules in ESLint seem to end their messages with a period, but `no-unused-vars` doesn't, so this PR attempts to change that.
  • Loading branch information
Brian Mock committed Jul 22, 2016
1 parent 9c36ecf commit 2403bfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rules/no-unused-vars.js
Expand Up @@ -60,7 +60,7 @@ module.exports = {

create: function(context) {

var MESSAGE = "'{{name}}' is defined but never used";
var MESSAGE = "'{{name}}' is defined but never used.";

var config = {
vars: "all",
Expand Down

0 comments on commit 2403bfe

Please sign in to comment.