Created
September 27, 2018 18:28
-
-
Save eddyerburgh/9279226ca7ce8cba218cc2f5ab40a57b to your computer and use it in GitHub Desktop.
inconsistent formatting with airbnb eslint
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foo({ | |
num: 3, | |
}, 1); | |
foo({ num: 3 }, | |
1); | |
foo( | |
{ num: 3 }, | |
1, | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment