aboutsummaryrefslogtreecommitdiffstats
path: root/.jscsrc
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2014-08-13 18:29:28 +0200
committerJörn Zaefferer <joern.zaefferer@gmail.com>2014-08-14 14:12:12 +0200
commit54004c85d02ba5688549736e0fb8f883c88b668b (patch)
tree32d6998cac3b0772488cb5ed2dbb77b9eae66e1d /.jscsrc
parentba5a60efa17671760ebb8d53f4f21e78b2d59082 (diff)
downloadjquery-ui-54004c85d02ba5688549736e0fb8f883c88b668b.tar.gz
jquery-ui-54004c85d02ba5688549736e0fb8f883c88b668b.zip
Build: Update jscs and fix some code style issues
Disables the checks for casing and line length, since those need a lot more effort to address. For variable naming the fix isn't obvious to me. There's way too many lines over 100 chars.
Diffstat (limited to '.jscsrc')
-rw-r--r--.jscsrc9
1 files changed, 9 insertions, 0 deletions
diff --git a/.jscsrc b/.jscsrc
new file mode 100644
index 000000000..de0d7420e
--- /dev/null
+++ b/.jscsrc
@@ -0,0 +1,9 @@
+{
+ "preset": "jquery",
+
+ // disabled until `widget_slice` et al are addressed
+ "requireCamelCaseOrUpperCaseIdentifiers": null,
+
+ // Ref https://github.com/jquery/contribute.jquery.org/issues/80#issuecomment-45253460
+ "maximumLineLength": null
+}