aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCallum Macrae <callum@macr.ae>2015-05-31 13:50:48 +0200
committerCallum Macrae <callum@macr.ae>2015-05-31 13:50:48 +0200
commitcfbd051d524543887b1854fbb96b7a21890984bd (patch)
tree1faffedd6f2e2bd1be0ca5813926b6195089e211 /.jshintrc
parent[ticket/13898] Fixed all the forum_fn.js violations I understood (diff)
downloadphpbb-cfbd051d524543887b1854fbb96b7a21890984bd.tar.gz
phpbb-cfbd051d524543887b1854fbb96b7a21890984bd.tar.bz2
phpbb-cfbd051d524543887b1854fbb96b7a21890984bd.zip
[ticket/13898] Moved jshint and jscs rcs to correct dir.
PHPBB3-13898
Diffstat (limited to '.jshintrc')
-rw-r--r--.jshintrc24
1 files changed, 24 insertions, 0 deletions
diff --git a/.jshintrc b/.jshintrc
new file mode 100644
index 0000000000..90d3bb613e
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,24 @@
+
+{
+ "bitwise": true,
+ "curly": true,
+ "eqeqeq": true,
+ "es3": true,
+ "forin": false,
+ "freeze": true,
+ "newcap": true,
+ "noarg": true,
+ "noempty": true,
+ "nonbsp": true,
+ "undef": true,
+ "unused": true,
+ "strict": true,
+
+ "browser": true,
+ "devel": true,
+ "jquery": true,
+
+ "globals": {
+ "JSON": true
+ }
+}