Danilo Campana Fuchs
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!...
Uppercase:  Lowercase: 
## 🏗 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...
## 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:...
**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...
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: ```...