Eric Dobbertin
Eric Dobbertin
We should think about a good way to support generating docs for template/UI helpers. Maybe we can use a custom tag or just an @alias.
This is not quite what I proposed in #217 . Adding full `extends` proved a bit tricky so I concentrated on the most important thing: ability to distribute custom rules...
Have you thought about supporting something like [ESLint shareable config](https://eslint.org/docs/developer-guide/shareable-configs)? ```js { "graphql-schema-linter": { "extends": "some-package-name", "rules": ["additional-rule"], "schemaPaths": ["path/to/my/schema/files/**.graphql"] } } ``` Rules from `extends` package would be implied,...
The channel URL specified in the javascript added by the helper init function is not correct. It must be absolute path with protocol (or //). See https://developers.facebook.com/blog/post/530/ (under the example...
@dpankros @yogiben, I had a thought regarding progress. What if it's just a generic ability to pass in a progress template, which we then include with a `this.percent` context? ```...
Add templates that have no underscore suffix so that this can be used more easily in non-bootstrap apps.
The pagination util function supports `offset` automatically, but the `offset` field needs to be added to the GraphQL schema params for each query for it to work. This is a...
See CollectionFS/Meteor-CollectionFS#146. The upshot is that the new rendering engine requires that a doc being transformed must already have an `_id` property. It seems as though calling `this.transform()` within a...
Add some validation checks for mongo operators that can't be done by SimpleSchema. See aldeed/meteor-simple-schema#9. - [ ] $rename (make sure existing values for the renamed key validate for the...
Moved from collection2-core repo issue https://github.com/aldeed/meteor-collection2-core/issues/54