Federico Ciardi

Results 30 issues of Federico Ciardi

## Summary As discussed at express-validator/express-validator#1009 a more schematic documentation would help third party libraries to autogenerate docs for methods. ## Detailed design ```js validators: [ { name: 'isAlpha(str [,...

🍿 discussion

## Description Types returned from 'generateAdaptiveTheme' and 'fixColorValue' now are variable depending on a generic parameter. eg. ```typescript // color will be of type 'string', // while before it would...

## Description This allows the user to input a lowest and highest ratio (with additional possible ratios inbetween), and then choose a number of additional swatches to generate that will...

This is a release plan of the next major release of `express-validator`. ## Potentially breaking bug fixes - [ ] Passing an Array to `toString()` should not return just the...

## Description Related to #1112 ## To-do list - [x] I have added tests for what I changed. - [x] This pull request is ready to merge.

Currently we only test units, I was thinking about adding some high level tests to better catch issues as the one addressed in #1070. @gustavohenke what do you think?

i: enhancement
area: tests

## Description ## To-do list - [x] I have added tests for what I changed. - [ ] This pull request is ready to merge.

PR: needs docs

## Description This closes #990 This is the base branch used to develop v7.0.0 features. ### When merging this we should use `Rebase and Merge` because we want to track...

PR: umbrella

## Description We mention in the docs that `ContextBuilder` is exposed in the result of `#check()` middleware. ~~This allows to get the properties of the builder.~~ ~~It can be used...

docs

## Description This allows to rename a property. ```js // req: { body: { name: 'foo' } } becomes // req: { body: { username: 'foo' } } body('name').rename('username').isString() //...

PR: new feature