This file contains hidden or 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
| git filter-branch --tree-filter 'git show $GIT_COMMIT --name-status\ | |
| | grep "^[AM]" | grep ".js$" | cut -f2 | tr "\n" " "\ | |
| xargs prettier --no-config --single-quote --no-semi \ | |
| --print-width=110 --write {} || \ | |
| echo “Error formatting, possibly invalid JS“' -- --all |
This file contains hidden or 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
| declare class RealmResults { | |
| length:number; | |
| filtered(query:string, arg:?any):RealmResults; | |
| snapshot():RealmResults; | |
| sorted(descriptor:any, reverse:?boolean):RealmResults; | |
| } | |
| declare class RealmList { | |
| length:number; | |
| filtered(query:string, arg:?any):RealmResults; |