chore(package): fix codespell binary file warnings (#1289)

This avoids codespell printing warnings for binary files
which have been added recently (`.iso`, `.dmg`), as well as dotfiles (i.e. `.DS_Store`).

Change-Type: patch
This commit is contained in:
Jonas Hermsmeier 2017-04-13 14:45:02 +02:00 committed by Juan Cruz Viotti
parent 57045ef1f6
commit 7fc10b71e3

View File

@ -16,7 +16,7 @@
"jslint": "eslint lib tests scripts bin versionist.conf.js",
"sasslint": "sass-lint lib/gui/scss",
"htmllint": "node scripts/html-lint.js",
"codespell": "codespell.py --skip *.gz,*.bz2,*.xz,*.zip,*.img lib tests docs scripts Makefile *.md LICENSE",
"codespell": "codespell.py --skip *.gz,*.bz2,*.xz,*.zip,*.img,*.dmg,*.iso,.DS_Store lib tests docs scripts Makefile *.md LICENSE",
"lint": "npm run jslint && npm run sasslint && npm run codespell && npm run htmllint",
"changelog": "versionist",
"start": "electron lib/start.js",