From 10229cd33288972982668065568faa71b5ac811c Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 17 Oct 2015 17:09:06 -0400 Subject: [PATCH] Rename npm script from `lint` to `style`. --- CONTRIBUTING.md | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index db11a30b3..670c101d9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -41,5 +41,5 @@ In addition to the following guidelines, please follow the conventions already e Guidelines are enforced using [JSCS](https://www.npmjs.com/package/jscs): ```bash -$ npm run lint +$ npm run style ``` diff --git a/package.json b/package.json index 9de7db185..3fde0a2fe 100644 --- a/package.json +++ b/package.json @@ -21,8 +21,8 @@ "sauce-tunnel": "2.2.3" }, "scripts": { - "test": "node test/test", - "lint": "jscs lodash.js" + "style": "jscs lodash.js", + "test": "node test/test" }, "volo": { "type": "directory",