Fernando Maia

Results 22 issues of Fernando Maia

When receiving `onSuccess`/`onError` parameters externally, it's very common to handle it as optional, as in the following example: ```tsx type Props = { onSuccess?: (data: ...) => void; }; const...

As in file inferring when neither file or data attributes are present, it would be nice to have the endpoint path as folder prefix when a file is given, so...

enhancement

Although warned in README.md, is there a way to combine this preprocessor with `cypress-webpack-preprocessor`?

As the extension has an icon, it would be nice to adopt it as the official one, and also we could have it in the vscode-icons project. I just raised...

The current `googleapis` version leads to [email protected], which has security issues: ``` └─┬ └─┬ [email protected] └─┬ [email protected] └─┬ [email protected] └─┬ [email protected] └── [email protected] ``` Could you update to `[email protected]`? This...

Beyond to `*` wildcards, it would be amazing to add naming convention restrictions, like `camelCase`, `PascalCases`, `kebab-case`, `CONSTANT_CASE`, and others. This would be very useful for React components folders, for...

In large JSON files, it's usual to isolate property groups with empty lines, as in the following example: ```json { "a": 1, "b": 2, "c": 3, "d": 4, "e": 5,...

Fixes #5. I set an `addRoute` to create a route for each component, plus an index route. These routes are wrapped by some layout components: * ReactDocLayout, which is basically...

Since we probably want the same output over React component files, including the prop table, description, remarks, etc., how about adding a config flag to automatically produce them? Maybe we...

enhancement