eslint-config-kiwi
Advanced tools
Comparing version 1.0.2 to 1.1.0
{ | ||
"name": "eslint-config-kiwi", | ||
"version": "1.0.2", | ||
"version": "1.1.0", | ||
"description": "A neat and opinionated eslint config", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -293,2 +293,2 @@ module.exports = { | ||
}, | ||
} | ||
}; |
@@ -18,3 +18,3 @@ module.exports = { | ||
// https://eslint.org/docs/rules/no-console | ||
'no-console': ['error', { allow: ['warn', 'error'] }], | ||
'no-console': ['off', { allow: ['info', 'warn', 'error'] }], | ||
@@ -42,2 +42,2 @@ // Disallow template literal placeholder syntax in regular strings | ||
}, | ||
} | ||
}; |
@@ -53,2 +53,2 @@ // https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules | ||
}, | ||
} | ||
}; |
@@ -27,2 +27,2 @@ module.exports = { | ||
}, | ||
} | ||
}; |
@@ -8,2 +8,2 @@ // https://github.com/prettier/eslint-plugin-prettier | ||
}, | ||
} | ||
}; |
@@ -178,3 +178,3 @@ module.exports = { | ||
genericType: 'always', | ||
ignoreDestructuring: false, | ||
ignoreDestructuring: true, | ||
}, | ||
@@ -207,2 +207,2 @@ ], | ||
], | ||
} | ||
}; |
@@ -1,2 +0,2 @@ | ||
const confusingBrowserGlobals = require('confusing-browser-globals') | ||
const confusingBrowserGlobals = require('confusing-browser-globals'); | ||
@@ -12,3 +12,3 @@ module.exports = { | ||
'no-restricted-globals': ['error', 'isFinite', 'isNaN'].concat( | ||
confusingBrowserGlobals | ||
confusingBrowserGlobals, | ||
), | ||
@@ -54,2 +54,2 @@ | ||
}, | ||
} | ||
}; |
33397