summaryrefslogtreecommitdiff
path: root/.jshintrc
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2014-04-25 06:26:49 +0200
committerPierre Schmitz <pierre@archlinux.de>2014-04-25 06:26:49 +0200
commit2e44b49a2db3026050b136de9b00f749dd3ff939 (patch)
treeef048f4db79a93c25cfc86319264aa7ae2a4ae0b /.jshintrc
parent9441dde8bfb95277df073717ed7817dced40f948 (diff)
Update to MediaWiki 1.22.6
Diffstat (limited to '.jshintrc')
-rw-r--r--.jshintrc42
1 files changed, 0 insertions, 42 deletions
diff --git a/.jshintrc b/.jshintrc
deleted file mode 100644
index c4e265a4..00000000
--- a/.jshintrc
+++ /dev/null
@@ -1,42 +0,0 @@
-{
- /* Common */
-
- // Enforcing
- "camelcase": true,
- "curly": true,
- "eqeqeq": true,
- "immed": true,
- "latedef": true,
- "newcap": true,
- "noarg": true,
- "noempty": true,
- "nonew": true,
- "quotmark": "single",
- "trailing": true,
- "undef": true,
- "unused": true,
- // Legacy
- "onevar": true,
-
- /* Local */
-
- // Enforcing
- "bitwise": true,
- "forin": false,
- "regexp": false,
- "strict": false,
- // Relaxing
- "laxbreak": true,
- "smarttabs": true,
- "multistr": true,
- // Environment
- "browser": true,
- // Legacy
- "nomen": true,
-
- "predef": [
- "mediaWiki",
- "jQuery",
- "QUnit"
- ]
-}