Andrey Koppel

Results 36 comments of Andrey Koppel

- [ ] Internal module used outside of it's related module. E.g. I have `ModuleName` and `ModuleName.Internal`. I want to be sure that `ModuleName.Internal` could be imported only by `ModuleName`....

Yes, in our company we have several custom linters. And it's always nice to have a way to write custom linters. At the moment we use Elm worker and `elm-syntax`...

As an alternative `nix` can be used to build docker images. Because `nix` has support to build Elm on ARM.

``` module Main exposing (main) import Platform type Form model formData = SimpleForm (model -> formData) | AdvancedForm (model -> Bool) initForm : Form model formData -> model -> Maybe...

Evil mode works quite well for me in vterm.

yes, it's nice to have no configuration

@ChristophP The solution is following: ``` {-| Empty attribute -} empty : Html.Attribute msg empty = Attrs.property "" Encode.null ```

It's not always correct to have `position: fixed;`. Because list of docs can be long so you will not be able to see the bottom part.

PR for that https://github.com/elm-lang/package.elm-lang.org/pull/242

PR created https://github.com/elm-lang/package.elm-lang.org/pull/241