diff options
author | tsmgeek <tsmgeek@gmail.com> | 2017-08-17 22:57:22 +0100 |
---|---|---|
committer | tsmgeek <tsmgeek@gmail.com> | 2017-08-17 22:57:22 +0100 |
commit | 26f13a592f00c6b1f6bdb60dada57a8ffb8a4d92 (patch) | |
tree | 79fd3d7db9bc684932b63dce688e396339c5158e /web | |
parent | 2dbf091c950606c6f7f852fa2b7a9a71b6496433 (diff) | |
download | trackermap-web-26f13a592f00c6b1f6bdb60dada57a8ffb8a4d92.tar.gz trackermap-web-26f13a592f00c6b1f6bdb60dada57a8ffb8a4d92.tar.bz2 trackermap-web-26f13a592f00c6b1f6bdb60dada57a8ffb8a4d92.zip |
alter some eslint rules
Diffstat (limited to 'web')
-rw-r--r-- | web/.eslintrc.json | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/web/.eslintrc.json b/web/.eslintrc.json index 03de8088..84512e89 100644 --- a/web/.eslintrc.json +++ b/web/.eslintrc.json @@ -18,7 +18,12 @@ "rules": {
"indent": ["error", 4,
{
- "SwitchCase":1
+ "SwitchCase":1,
+ "VariableDeclarator":2,
+ "CallExpression":{
+ "arguments": 2
+ },
+ "MemberExpression": 2
}
],
"comma-spacing": [2,
|