Skip to content

Commit 5e3e75c

Browse files
committed
Merge pull request #536 from taimir/master
Fix eslint rules to match clang-format
2 parents 73bd6c4 + 4942533 commit 5e3e75c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.eslintrc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
// This file contains root configuration for ESLint. Its rules may be overriden in a specific
3-
// folder (e.g., tests) by placing .eslintrc in it.
3+
// folder (e.g., tests) by placing .eslintrc in it.
44
// All lint rules should be placed here unless they do not apply to entire JavaScript codebase.
55
// For example, indentation rules should be here (applies to all JS files), but Protractor
66
// should not (applies only to integration tests files).
@@ -42,8 +42,6 @@
4242
"no-multiple-empty-lines": [2, {"max": 1}],
4343
// Disallow the use of ternary operators when a simpler alternative exists.
4444
"no-unneeded-ternary": 2,
45-
// Avoid code that looks like two expressions but is actually one.
46-
"no-unexpected-multiline": 2,
4745
// Disallow trailing spaces. This is to unify code because editors may have different
4846
// settings.
4947
"no-trailing-spaces": 2,

0 commit comments

Comments
 (0)