summaryrefslogtreecommitdiffstats
path: root/web/react/.eslintrc
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-08-31 12:51:04 -0400
committerChristopher Speller <crspeller@gmail.com>2015-08-31 12:51:04 -0400
commitc7b48e4ab14451f12ce4de54dac05664dde762c5 (patch)
treec80cc6b4f28a554c63f63c86c9b81c0edcd73e58 /web/react/.eslintrc
parent461f9f0546efd1fa1e8b5008843177f77d2eb3e6 (diff)
downloadchat-c7b48e4ab14451f12ce4de54dac05664dde762c5.tar.gz
chat-c7b48e4ab14451f12ce4de54dac05664dde762c5.tar.bz2
chat-c7b48e4ab14451f12ce4de54dac05664dde762c5.zip
Removing complexity rule. Removing check of camel case from property names
Diffstat (limited to 'web/react/.eslintrc')
-rw-r--r--web/react/.eslintrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/.eslintrc b/web/react/.eslintrc
index cdf96905b..ab000e941 100644
--- a/web/react/.eslintrc
+++ b/web/react/.eslintrc
@@ -39,7 +39,7 @@
"no-unexpected-multiline": 2,
"block-scoped-var": 1,
- "complexity": [1, 8],
+ "complexity": [0, 8],
"consistent-return": 2,
"curly": [2, "all"],
"dot-notation": 2,
@@ -97,7 +97,7 @@
// Style
"array-bracket-spacing": [2, "never"],
"brace-style": [2, "1tbs", { "allowSingleLine": false }],
- "camelcase": [2, {"properties": "always"}],
+ "camelcase": [2, {"properties": "never"}],
"comma-spacing": [2, {"before": false, "after": true}],
"comma-style": [2, "last"],
"computed-property-spacing": [2, "never"],