callstack / react-native-image-editor

A library providing an API for cropping images from the web and the local file system.
MIT License
368 stars 117 forks source link

enable prettier by default #57

Closed vonovak closed 4 years ago

vonovak commented 4 years ago

Summary

same as https://github.com/react-native-community/react-native-blur/pull/351

I removed "requirePragma": true from prettierrc because that option means prettier is not enabled unless explicitly turned on using the @format pragma (as it was in example/index.js).

After that I just ran eslint --fix and the code now follows the specified config.

Test Plan

eslint passes (it does locally :) )

What's required for testing (prerequisites)?

What are the steps to reproduce (after prerequisites)?

Compatibility

OS Implemented
iOS ✅❌
Android ✅❌

Checklist

Trancever commented 4 years ago

@vonovak Thanks!