aboutsummaryrefslogtreecommitdiffstats
path: root/.jshintrc
diff options
context:
space:
mode:
authorDeathamns <deathamns@gmail.com>2014-11-05 17:01:18 +0100
committerDeathamns <deathamns@gmail.com>2014-11-09 17:41:05 +0100
commit6f2e449e617d4bc01ae10fd9ab3a1cd7593920d0 (patch)
tree48d4814b7416347338a42d0dc0c413bc7b833c3c /.jshintrc
parente36c7022cfe6cfd393c08952dcc22d21ecfbaeba (diff)
downloaduBlock-6f2e449e617d4bc01ae10fd9ab3a1cd7593920d0.zip
uBlock-6f2e449e617d4bc01ae10fd9ab3a1cd7593920d0.tar.gz
uBlock-6f2e449e617d4bc01ae10fd9ab3a1cd7593920d0.tar.bz2
Preferences button for Safari
Brings back the possibility to click a checkbox which opens the extension settings from Safari's Preferences/Extensions.
Diffstat (limited to '.jshintrc')
-rw-r--r--.jshintrc22
1 files changed, 22 insertions, 0 deletions
diff --git a/.jshintrc b/.jshintrc
new file mode 100644
index 0000000..618c34f
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,22 @@
+{
+ "browser": true,
+ "devel": true,
+ "esnext": true,
+ "globalstrict": true,
+ "undef": true,
+ "unused": true,
+ "nonew": false,
+ "sub": true,
+ "boss": true,
+ "laxbreak": true,
+ "validthis": true,
+ "newcap": false,
+ "-W058": true, // suppress "Missing '()' invoking a constructor" message
+ "globals": {
+ "self": false,
+ "vAPI": false,
+ "chrome": false,
+ "safari": false,
+ "Components": false // global variable in Firefox
+ }
+} \ No newline at end of file