Bug 1326100 - Allow inline comments in DevTools. r=tromey

MozReview-Commit-ID: DCkrZogea3x

--HG--
extra : rebase_source : 8078b6e52f9521e661d5ea2fc170b16d59880411
This commit is contained in:
J. Ryan Stinnett 2017-03-20 16:06:44 -05:00
parent 86c183ce61
commit b9f4e71243

View File

@ -233,8 +233,8 @@ module.exports = {
"no-fallthrough": "error",
// Allow the use of leading or trailing decimal points in numeric literals.
"no-floating-decimal": "off",
// Disallow comments inline after code.
"no-inline-comments": "error",
// Allow comments inline after code.
"no-inline-comments": "off",
// Disallow if as the only statement in an else block.
"no-lonely-if": "error",
// Allow mixing regular variable and require declarations (not a node env).