Chris Ng
Chris Ng
Why: This is simply abusing modifiers to make them behave like observers (cc @chriskrycho) If a class-based modifier: - If using any method other than modify, check for use of...
Enforces that no `id` attributes are reused. This rule does a basic check to ensure that `id` attribute values are not the same. In the case of a JSX expression,...
Fixes issue #14
This will be useful for internationalization when users expect the value `0` to be from the right rather than the left.
Adding Route Metadata as an option to pass in an object for a given route ```javascript router.add([{ path: "/post/1", handler: page, metadata: { test: 123 } }]); result = router.recognize("/post/1");...