Faris Mustafa

Results 28 issues of Faris Mustafa

Given this scenario I would expect the resulting external css to be ```css body { margin: 5px; } .package-a { padding: 10px; } ``` But instead I am seeing It...

Being able to do something like this could be convenient ```mint suite "Button" { test "has a reference" { |> Test.Html.start |> (ctx : Test.Context(Dom.Element)) { btn != Maybe::Nothing }...

The compiler could allow all of the following syntax ```mint let a=2 let b = a|>Number.toString let neq = a!=1 let eq = foo==2 let lte = a1 let plus...

enhancement
language
discussion

On Discord I requested the ability to run a single test file, e.g. `mint test Main` and @gdotdesign said he thought it was already possible. It turns out it is...

enhancement
tooling
discussion

It would be nice to preserve some of the debug information for complex types so that `Debug.log` would be more useful. This would only take effect when developing, not when...

enhancement
language
discussion

I believe only `String` and `Number` are directly supported when using string interpolation (please correct me if I'm wrong) It would be very convenient to support at least three other...

enhancement
language
discussion

```mint component Main { fun render : Html { let {result, code} = @format { let iifetest = () { ` (() => { // ... })() ` } ""...

bug
language

Allowing comments in the middle of `|>` pipelines would be very useful ```mint component Main { fun render : Html { let sum = [1, 2, 3] |> Array.map((i :...

Allowing comments in the middle of Arrays would be very useful ```mint let arr = [ "hello", //"strange", "world" ] ```

We noticed our styleguide linting checks failing on one of our projects after upgrading our version of `@roadiehq/scaffolder-backend-module-utils` above `1.13.1`, due to arrays becoming indented. It looks like the root...

kind/bug