asrar

Results 97 comments of asrar

Maybe this should go into https://github.com/DamienHarper/auditor-bundle, let me know

Faced a similar issue here: https://psalm.dev/r/765fa2e560

Elm packages are hosted at https://package.elm-lang.org/ And the package manager is built into the compiler itself. There is already an elm2nix which is well supported https://github.com/cachix/elm2nix

There is `doctrine:schema:validate` which checks the annotations and syncing, but it cannot be filtered to just a few entities. It works on the whole database.

When using sql first migrations, especially in a legacy project, it is nice to check if the entity matches the database table. What `schema:validate` does is it checks if schema...

Yes, i do want all entities which are mapped to be checked with their respective sql table's , but only the types not the indexes/foreign key names etc

Is a `numeric-string` a better type for Decimal columns?

> I don't think tsc reads the browserslist config to select the output. It is configured in the tsconfig.json file. Yes indeed, but even after selecting `target` to `es6` i...

So after some digging in, I see there are two ways to configure typescript support: - `enableTypescriptSupport` -> This uses the typescript compiler itself to emit code, so it type...

Looks like there is no way to disable babel from config, i especially wanted to remove the preset `preset-env`, so the best way right now is to simply specify a...