I was checking for eslint
rules and try adding custom eslint rule within a particular js file in sublime-text3
added 2 rule for same property as below
/*eslint no-console: "error"*/
/*eslint no-console: ["error", { allow: ["warn", "error"] }] */
'use strict';
then which rule will be implied?
also have .eslintrc file but do not want to add rules from that file.