Danilo Campana Fuchs

Results 41 issues of Danilo Campana Fuchs

While working on https://github.com/michaelwittig/node-i18n-iso-countries/pull/175, I came across some thoughts. This project is now 5 years old, and the last revision of jshint rules was [4 years ago](https://github.com/michaelwittig/node-i18n-iso-countries/commit/ab7848fe31d34b233121b0fe071c06bc151b037c). The JS ecosystem...

Our schema looks like this: ```graphql type Query { courier(code: String!): CourierResult! } union CourierResult = Courier | CourierNotFoundError | InternalServerError type Courier { name: String! code: String! picture: String!...

bug

Uppercase: ![image](https://user-images.githubusercontent.com/17657014/129805168-54a79146-2a2e-4ff6-ac4a-6109d8c2c659.png) Lowercase: ![image](https://user-images.githubusercontent.com/17657014/129805187-45c332b4-10ed-433b-a203-a492092caa5c.png)

## 🏗 Enhancement Proposal Better document how to edit the Podfile with an add-to-app using Frameworks Embedding ([Option B of integration](https://flutter.dev/docs/development/add-to-app/ios/project-setup#option-b---embed-frameworks-in-xcode)) ### Pitch Our team chose to build our Flutter...

platform: ios
type: documentation
type: enhancement
P2
group: app-to-app

## Context We are using Melos to organize our private Flutter components monorepo. Dependant projects use git references to securely obtain the packages like this: ```yaml dependencies: my_private_package: git: url:...

enhancement
stale

**Is your feature request related to a problem? Please describe.** Apollo Server has the `@defer` directive, which returns a stream of partial data, building the response one piece at a...

PRs encouraged

When using `rootBundle`, the animation may take a while to load. `CachedImageNetwork` library provides a `placeholder` and `errorWidget` builders as arguments. Also, when switching between the placeholder and the actual...

Adds support for `noUncheckedIndexedAccess` flag, an even stricter flag. https://devblogs.microsoft.com/typescript/announcing-typescript-4-1-beta/#no-unchecked-indexed-access **Update:** On issue https://github.com/microsoft/TypeScript/issues/42659 the TS team instructed me to use `tsc --help --all` flag, which solved the issue. ---...

`tsc` allows passing down a `--project ./other/tsconfig.json` file. By using this, instead of building the flags ourselves, lib users can fully customize the _stricter_ config. This is necessary since new...

I configured my Github Actions pull_request job to run ts-strictify. The `actions/checkout@v2` by default does not fetch all repository refs, so `master` is not available, leading to this issue: ```...