Ilio Catallo

Results 8 issues of Ilio Catallo

Hi, Given the following schema: ``` javascript var schema = { 'type': 'object', 'properties': {  'foo': { 'oneOf': [ { 'type': 'integer' }, { 'type': {'enum': ['bar', 'baz']} } ]...

Hello there, I was wondering if there is a way to hide the page number (maybe via a configuration). For the time being, I just removed `active` from the concatenation...

enhancement

Hello there, I was wondering if there is a way to decide what code blocks to execute. From time to time I just want to show again a piece of...

Hi, It would be nice to support representational formats other than JSON. Specifically, I would like to be able to convey the following: ``` json { "access_token":"2YotnFZFEjr1zCsicMWpAA", "token_type":"bearer", "expires_in":3600, "refresh_token":"tGzv3JOkF0XG5Qx2TlKWIA"...

Hi, is it possible to selectively ignore some listings in the list of listings? I am looking for something equivalent to the`nolol` option provided by some competing packages. Thank you,...

Hello there! At present, Itsycal disables the meeting button for past events. It would be handy to keep the button active instead; that would make it possible to join a...

### Description In a TypeScript code base, `thenReject()` only accepts `Error`s. ### Issue It would be nice to allow for different types of rejected values – along the lines of...

Hi, When copy-pasting the `Rectangle` class from the official [Cheatsheet](https://civet.dev/cheatsheet#constructor) ```civet class Rectangle @(@width: number, @height: number) ``` VSCode is complaining about the fact that: ``` Property 'width' does not...