build: Disable some eslint rules in /bin

This commit is contained in:
Cole Bemis
2018-05-17 22:21:17 -07:00
parent 23b17b9c55
commit 76f29d8565
8 changed files with 13 additions and 7 deletions

View File

@@ -4,7 +4,7 @@ import icons from '../src/icons';
const OUT_DIR = path.resolve(__dirname, '../dist/icons');
console.log(`Building SVGs in ${OUT_DIR}`); // eslint-disable-line no-console
console.log(`Building SVGs in ${OUT_DIR}`);
Object.keys(icons).forEach(name => {
const svg = icons[name].toSvg();