Results 4 issues of Evan Davis

a comment at the end of a line inside a JSX component declaration doesn't get picked up and highlighted, see below:

bug

I'm using `org-projectile` in single-file mode (projects todos go under project-name headlines in `~/Org/projects.org`.) **Is there an easy way to view my todos filtered to the current project?** I'm happy...

## Expected Behavior Calling `ivy-occur` from `projectile-find-file` (ivy results) should open an `occur` buffer; candidates in the occur buffer should behave normally, e.g. `` should visit the file. ## Actual...

Under [Existence Checking](https://github.com/planningcenter/react-patterns#existence-checking), you provide the following example: ``` javascript // bad render () { if (this.props.person) { return {this.props.person.firstName}; } else { return null; } } ``` ``` javascript...