Warn about console usage

This commit is contained in:
Daniel Huigens 2018-05-01 17:45:48 +02:00
parent 4afaae13ca
commit b5c6e655de
3 changed files with 8 additions and 4 deletions

View File

@ -330,11 +330,11 @@ module.exports = {
"no-constant-condition": [ 2, { "checkLoops": false } ],
// Custom warnings:
"no-console": 0,
"no-console": 1,
"no-unused-vars": 1,
"indent": [ 0, 2, { "SwitchCase": 1 } ],
// TODO Consider fixing these:
"indent": [ 0, 2, { "SwitchCase": 1 } ],
"valid-jsdoc": 0,
"new-cap": [ 0, { "properties": false, "capIsNewExceptionPattern": "^type_.*" }],
"no-lonely-if": 0,

View File

@ -19,12 +19,14 @@
* @requires encoding/base64
* @requires enums
* @requires config
* @requires util
* @module encoding/armor
*/
import base64 from './base64.js';
import enums from '../enums.js';
import config from '../config';
import util from '../util';
/**
* Finds out which Ascii Armoring type is used. Throws error if unknown type.
@ -219,8 +221,8 @@ function verifyHeaders(headers) {
if (!/^([^\s:]|[^\s:][^:]*[^\s:]): .+$/.test(headers[i])) {
throw new Error('Improperly formatted armor header: ' + headers[i]);
}
if (config.debug && !/^(Version|Comment|MessageID|Hash|Charset): .+$/.test(headers[i])) {
console.log('Unknown header: ' + headers[i]);
if (!/^(Version|Comment|MessageID|Hash|Charset): .+$/.test(headers[i])) {
util.print_debug_error(new Error('Unknown header: ' + headers[i]));
}
}
}

View File

@ -15,6 +15,8 @@
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
/* eslint-disable no-console */
/**
* This object contains utility functions
* @requires config