aboutsummaryrefslogtreecommitdiffstats
path: root/.jscs.json
diff options
context:
space:
mode:
authorTimothée Jeannin2014-03-04 20:39:10 +0100
committerBrian Ford2014-03-07 15:05:22 -0800
commit8c7b9b8de432e4fa6267ce7c58fca85f68001b01 (patch)
tree3a5ae308aa246de8e3d48d544b5250f1c80effc8 /.jscs.json
parentf39ac571c4b21a90e8422206d0a5bb75846ebfca (diff)
downloadangular.js-8c7b9b8de432e4fa6267ce7c58fca85f68001b01.tar.bz2
style: enable jscs requireLeftStickedOperators rule
Closed #6544.
Diffstat (limited to '.jscs.json')
-rw-r--r--.jscs.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/.jscs.json b/.jscs.json
index 0fc84a66..440737e1 100644
--- a/.jscs.json
+++ b/.jscs.json
@@ -1,5 +1,6 @@
{
"disallowKeywords": ["with"],
"disallowTrailingWhitespace": true,
- "requireRightStickedOperators": ["!"]
+ "requireRightStickedOperators": ["!"],
+ "requireLeftStickedOperators": [","]
}