From 4072264fa87bde7f7417f4ba5ee9dd1d450e11bb Mon Sep 17 00:00:00 2001 From: Deathamns Date: Sun, 19 Oct 2014 13:11:27 +0200 Subject: [PATCH] Add .jshintrc, and use the "use strict" directive .jshintrc's otion-set is a personal choice, merely a suggestion. Beside that, it includes some common globals for specific browsers, so there's no need to set the globals in every .js file. In order to force strict coding, "use strict" directive was added into every .js file. --- src/js/vapi-client.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/js/vapi-client.js b/src/js/vapi-client.js index 76058e1..d97d35f 100644 --- a/src/js/vapi-client.js +++ b/src/js/vapi-client.js @@ -1,5 +1,4 @@ // for non background pages -/* global chrome, Components, safari */ (function() { 'use strict';