From 7fc10b71e33b290fd383313a91be1cd523275a60 Mon Sep 17 00:00:00 2001 From: Jonas Hermsmeier Date: Thu, 13 Apr 2017 14:45:02 +0200 Subject: [PATCH] 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 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index acfb9d88..8ee4c20b 100644 --- a/package.json +++ b/package.json @@ -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",