Browse Source

ESLint: Disable no-console in bin/.eslintrc.json, not bin/pegjs

The less clutter in JavaScript files themselves, the better.
redux
David Majda 7 years ago
parent
commit
f390c7cf45
  1. 3
      bin/.eslintrc.json
  2. 2
      bin/pegjs

3
bin/.eslintrc.json

@ -1,5 +1,8 @@
{
"env": {
"node": true
},
"rules": {
"no-console": 0
}
}

2
bin/pegjs

@ -1,7 +1,5 @@
#!/usr/bin/env node
/* eslint no-console: 0 */
"use strict";
var fs = require("fs");

Loading…
Cancel
Save