├── .gitignore ├── LICENSE ├── README.md ├── canonicalize ├── alias-mutually-recursive.elm └── alias-recursive.elm ├── elm-package.json ├── naming ├── ambiguous.elm ├── exposed-unknown.elm ├── qualified-unknown.elm └── unknown-qualifier.elm └── types ├── argument-1-of-1-number.elm ├── argument-1-of-1.elm ├── argument-1-of-2-comparable.elm ├── argument-too-few.elm ├── argument-too-many.elm ├── binop-right-truthy.elm ├── binop-string-append.elm ├── c-style-args.elm ├── case-2.elm ├── case-3.elm ├── if-condition.elm ├── if-multi.elm ├── if.elm ├── record-missing-field.elm ├── submismatch-list.elm ├── submismatch-record-nested.elm ├── submismatch-record.elm ├── submismatch-task-error.elm ├── submismatch-tuple.elm ├── type-annotation-nesting.elm ├── type-annotation-rigid-supers.elm └── type-annotation-rigid.elm /.gitignore: -------------------------------------------------------------------------------- 1 | elm-stuff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/README.md -------------------------------------------------------------------------------- /canonicalize/alias-mutually-recursive.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/canonicalize/alias-mutually-recursive.elm -------------------------------------------------------------------------------- /canonicalize/alias-recursive.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/canonicalize/alias-recursive.elm -------------------------------------------------------------------------------- /elm-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/elm-package.json -------------------------------------------------------------------------------- /naming/ambiguous.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/naming/ambiguous.elm -------------------------------------------------------------------------------- /naming/exposed-unknown.elm: -------------------------------------------------------------------------------- 1 | 2 | foo = map -------------------------------------------------------------------------------- /naming/qualified-unknown.elm: -------------------------------------------------------------------------------- 1 | 2 | foo = List.nap -------------------------------------------------------------------------------- /naming/unknown-qualifier.elm: -------------------------------------------------------------------------------- 1 | 2 | foo = 3 | Dict.filter -------------------------------------------------------------------------------- /types/argument-1-of-1-number.elm: -------------------------------------------------------------------------------- 1 | 2 | 3 | foo = 4 | not 42 -------------------------------------------------------------------------------- /types/argument-1-of-1.elm: -------------------------------------------------------------------------------- 1 | 2 | 3 | foo = 4 | not "hello" -------------------------------------------------------------------------------- /types/argument-1-of-2-comparable.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/types/argument-1-of-2-comparable.elm -------------------------------------------------------------------------------- /types/argument-too-few.elm: -------------------------------------------------------------------------------- 1 | 2 | 3 | foo = 4 | not || False 5 | -------------------------------------------------------------------------------- /types/argument-too-many.elm: -------------------------------------------------------------------------------- 1 | 2 | foo = 3 | not True "Hats" -------------------------------------------------------------------------------- /types/binop-right-truthy.elm: -------------------------------------------------------------------------------- 1 | 2 | foo = 3 | True || "false" -------------------------------------------------------------------------------- /types/binop-string-append.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/types/binop-string-append.elm -------------------------------------------------------------------------------- /types/c-style-args.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/types/c-style-args.elm -------------------------------------------------------------------------------- /types/case-2.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/types/case-2.elm -------------------------------------------------------------------------------- /types/case-3.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/types/case-3.elm -------------------------------------------------------------------------------- /types/if-condition.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/types/if-condition.elm -------------------------------------------------------------------------------- /types/if-multi.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/types/if-multi.elm -------------------------------------------------------------------------------- /types/if.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/types/if.elm -------------------------------------------------------------------------------- /types/record-missing-field.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/types/record-missing-field.elm -------------------------------------------------------------------------------- /types/submismatch-list.elm: -------------------------------------------------------------------------------- 1 | 2 | 3 | subMismatch = 4 | ["Alice"] == [True] -------------------------------------------------------------------------------- /types/submismatch-record-nested.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/types/submismatch-record-nested.elm -------------------------------------------------------------------------------- /types/submismatch-record.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/types/submismatch-record.elm -------------------------------------------------------------------------------- /types/submismatch-task-error.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/types/submismatch-task-error.elm -------------------------------------------------------------------------------- /types/submismatch-tuple.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/types/submismatch-tuple.elm -------------------------------------------------------------------------------- /types/type-annotation-nesting.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/types/type-annotation-nesting.elm -------------------------------------------------------------------------------- /types/type-annotation-rigid-supers.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/types/type-annotation-rigid-supers.elm -------------------------------------------------------------------------------- /types/type-annotation-rigid.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm/error-message-catalog/HEAD/types/type-annotation-rigid.elm --------------------------------------------------------------------------------