I've noticed that prettier and standard disagree on at least one rule, about putting a space before the parentheses in a function declaration: ```js // prettier function foo() { } // standard function foo () { } ``` How does this tool resolve the conflict?