upgrade eslint-plugin-dev to 5.0.0 (#5382)

* upgrade eslint-plugin-dev to 5.0.0

* more [lint fixes]
This commit is contained in:
Ben Kucera
2019-10-17 11:40:53 -04:00
committed by Brian Mann
parent e1f0f99892
commit 653f52dc3c
71 changed files with 17 additions and 196 deletions

View File

@@ -110,7 +110,6 @@ const testPackageStaticAssets = async (options = {}) => {
la(!!foundAssets.length, stripIndent`
expected assets to be found in ${chalk.green(opts.assetGlob)}
`)
}
module.exports = {
@@ -119,7 +118,6 @@ module.exports = {
}
function includesCount (string, subString) {
string += ''
subString += ''
if (subString.length <= 0) return (string.length + 1)
@@ -152,5 +150,4 @@ const includesString = (fileStr, options) => {
const passed = count >= atLeast
return [passed, count, atLeast]
}