We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide the settings you use:
.jsbeautifyrc
{ "js": { "space_after_anon_function": true, "keep_function_indentation": true } }
Hmm.. well since I can not find the option, the result is not surprising. What is it called and does it even exist?
const read2 = cb => S.ifElse (isGif) (parseGif2 (cb)) (S.ifElse (isPng) (parsePng2 (cb)) (S.K (new Error ('Image format is not recognized or supported'))))
const read2 = cb => S.ifElse(isGif) (parseGif2(cb)) (S.ifElse(isPng) (parsePng2(cb)) (S.K(new Error('Image format is not recognized or supported'))))
Adding space before calling parentheses is very common in the Sanctuary ecosystem.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Provide the settings you use:
.jsbeautifyrc
Expected results
Hmm.. well since I can not find the option, the result is not surprising. What is it called and does it even exist?
Actual results
Adding space before calling parentheses is very common in the Sanctuary ecosystem.
The text was updated successfully, but these errors were encountered: