├── .dockerignore ├── .envrc ├── .gitattributes ├── .github ├── actions │ ├── cache-build │ │ └── action.yml │ ├── cache-haskell-deps │ │ └── action.yml │ ├── git-tags │ │ └── action.yml │ ├── haskell │ │ └── action.yml │ └── release-artifact │ │ └── action.yml └── workflows │ ├── Build release (lamdera-community).yml │ ├── Build release.yml │ ├── CI.yml │ ├── Check published packages (nixpkgs).yml │ ├── Check published packages (npm).yml │ ├── Snapshot release.yml │ └── Touch cache.yml ├── .gitignore ├── .gitpod.yml ├── .hlint.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── Release Notes ├── 0.1-alpha2.md ├── 0.2.0-alpha.md ├── 0.3.0-alpha-elm017rc1-rc1.md ├── 0.3.0-alpha.md ├── 0.3.1-alpha.md ├── 0.4.0-alpha.md ├── 0.5.0-alpha.md ├── 0.5.1-alpha.md ├── 0.5.2-alpha.md ├── 0.6.0-alpha.md ├── 0.6.1-alpha.md ├── 0.7.0-exp.md ├── 0.8.0.md ├── 0.8.1.md ├── 0.8.2.md ├── 0.8.3.md ├── 0.8.4.md ├── 0.8.5.md ├── 0.8.6.md └── 0.8.7.md ├── Shakefile ├── build-elm-format.cabal ├── package.yaml └── src │ ├── Main.hs │ └── Shakefiles │ ├── Dependencies.hs │ ├── ElmFormat │ └── IntegrationTests.hs │ ├── Extra.hs │ ├── Haskell.hs │ ├── Haskell │ └── Hpc.hs │ ├── ListFiles.hs │ ├── NestedCheckout.hs │ ├── NixBuild.hs │ ├── Platform.hs │ ├── Prelude.hs │ ├── Shellcheck.hs │ └── Signature.hs ├── Style Guide ├── .gitignore ├── CI.md ├── Declarations.md ├── Expressions.md ├── Imports.md ├── Lists.md ├── Markdown.md ├── README.md ├── SUMMARY.md ├── Sections.md ├── Upgrading.md ├── book.json └── styles │ └── website.css ├── avh4-lib ├── LICENSE ├── avh4-lib.cabal ├── package.yaml ├── src │ ├── CommandLine │ │ ├── Filesystem.hs │ │ ├── World.hs │ │ └── World │ │ │ └── RealWorld.hs │ ├── Data │ │ ├── Coapplicative.hs │ │ ├── Either │ │ │ └── Extra.hs │ │ ├── Indexed.hs │ │ ├── List │ │ │ └── Extra.hs │ │ ├── ReversedList.hs │ │ └── Text │ │ │ └── Extra.hs │ ├── Elm │ │ └── Utils.hs │ └── Regex.hs └── test │ ├── Data │ ├── List │ │ └── ExtraTest.hs │ └── Text │ │ └── ExtraTest.hs │ └── Tests.hs ├── cabal.config ├── cabal.project ├── cabal.project.freeze ├── default.nix ├── dev ├── Documentation │ ├── Build Commands.md │ ├── Publishing.md │ ├── README.md │ └── Signatures.md └── build.sh ├── elm-format-lib ├── LICENSE ├── elm-format-lib.cabal ├── package.yaml ├── src │ ├── AST │ │ ├── Helpers.hs │ │ ├── Listing.hs │ │ ├── MatchReferences.hs │ │ ├── Module.hs │ │ ├── Structure.hs │ │ └── V0_16.hs │ ├── Box.hs │ ├── CommandLine │ │ ├── InfoFormatter.hs │ │ ├── Program.hs │ │ ├── ResolveFiles.hs │ │ └── TransformFiles.hs │ ├── Data │ │ └── Utf8.hs │ ├── Elm │ │ └── String.hs │ ├── ElmFormat │ │ ├── AST │ │ │ ├── BinaryOperatorPrecedence.hs │ │ │ ├── PatternMatching.hs │ │ │ ├── PublicAST.hs │ │ │ ├── PublicAST │ │ │ │ ├── Comment.hs │ │ │ │ ├── Config.hs │ │ │ │ ├── Core.hs │ │ │ │ ├── Expression.hs │ │ │ │ ├── MaybeF.hs │ │ │ │ ├── Module.hs │ │ │ │ ├── Pattern.hs │ │ │ │ ├── Reference.hs │ │ │ │ └── Type.hs │ │ │ └── Shared.hs │ │ ├── ImportInfo.hs │ │ ├── KnownContents.hs │ │ ├── Parse.hs │ │ └── Render │ │ │ ├── Box.hs │ │ │ ├── ElmStructure.hs │ │ │ ├── Markdown.hs │ │ │ └── Text.hs │ ├── ElmVersion.hs │ ├── Parse │ │ ├── Binop.hs │ │ ├── Comments.hs │ │ ├── Common.hs │ │ ├── Declaration.hs │ │ ├── Expression.hs │ │ ├── Helpers.hs │ │ ├── IParser.hs │ │ ├── Literal.hs │ │ ├── Markdown.hs │ │ ├── Module.hs │ │ ├── Number.hs │ │ ├── Parse.hs │ │ ├── ParsecAdapter.hs │ │ ├── Pattern.hs │ │ ├── Primitives.hs │ │ ├── State.hs │ │ ├── String.hs │ │ ├── Type.hs │ │ ├── Variable.hs │ │ └── Whitespace.hs │ └── Reporting │ │ ├── Annotation.hs │ │ ├── Error │ │ ├── Docs.hs │ │ └── Syntax.hs │ │ └── Result.hs └── test │ ├── AST │ └── MatchReferencesTest.hs │ ├── BoxTest.hs │ ├── ElmFormat │ ├── AST │ │ └── BinaryOperatorPrecedenceTest.hs │ ├── ImportInfoTest.hs │ └── Render │ │ └── ElmStructureTest.hs │ ├── Parse │ ├── ExpressionTest.hs │ ├── HelpersTest.hs │ ├── LiteralTest.hs │ ├── PatternTest.hs │ ├── TestHelpers.hs │ ├── TestHelpersTest.hs │ └── TypeTest.hs │ └── Tests.hs ├── elm-format-markdown ├── Cheapskate │ ├── Inlines.hs │ ├── Parse.hs │ ├── ParserCombinators.hs │ ├── Types.hs │ └── Util.hs ├── LICENSE ├── elm-format-markdown.cabal ├── package.yaml └── tests │ ├── Blockquotes │ ├── Indents.html │ ├── Indents.markdown │ ├── Indents.markdown~ │ ├── Nesting.html │ ├── Nesting.markdown │ ├── Separation.html │ └── Separation.markdown │ ├── Code │ ├── BlankLines.html │ ├── BlankLines.markdown │ ├── BlankLinesAtEnd.html │ ├── BlankLinesAtEnd.markdown │ ├── FenceMatching.html │ ├── FenceMatching.markdown │ ├── FencedCodeBlocks.html │ ├── FencedCodeBlocks.markdown │ ├── IndentedCodeBlocks.html │ ├── IndentedCodeBlocks.markdown │ ├── IndentedFences.html │ ├── IndentedFences.markdown │ ├── IndentedInLists.html │ ├── IndentedInLists.markdown │ ├── Inline.html │ ├── Inline.markdown │ ├── ListBreakAfter.html │ ├── ListBreakAfter.markdown │ ├── WhiteLines.html │ └── WhiteLines.markdown │ ├── Emphasis │ ├── Escapes.html │ ├── Escapes.markdown │ ├── NestedEmphAndStrong.html │ ├── NestedEmphAndStrong.markdown │ ├── Pathological.html │ ├── Pathological.markdown │ ├── Punctuation.html │ └── Punctuation.markdown │ ├── HTML │ ├── Blocks.html │ ├── Blocks.markdown │ ├── Inline.html │ ├── Inline.markdown │ ├── UppercaseTags.html │ └── UppercaseTags.markdown │ ├── Headers │ ├── ATX.html │ ├── ATX.markdown │ ├── Setext.html │ └── Setext.markdown │ ├── Links │ ├── AngleBrackets.html │ ├── AngleBrackets.markdown │ ├── AutoLinks.html │ ├── AutoLinks.markdown │ ├── BackticksInLinks.html │ ├── BackticksInLinks.markdown │ ├── BareLinks.html │ ├── BareLinks.markdown │ ├── CaseInsensitiveReferences.html │ ├── CaseInsensitiveReferences.markdown │ ├── Entities.html │ ├── Entities.markdown │ ├── InlineLinks.html │ ├── InlineLinks.markdown │ ├── ParensInURLs.html │ ├── ParensInURLs.markdown │ ├── ReferenceLinks.html │ └── ReferenceLinks.markdown │ ├── Lists │ ├── CodeBlocksInLists.html │ ├── CodeBlocksInLists.markdown │ ├── ConsecutiveLists.html │ ├── ConsecutiveLists.markdown │ ├── EmptyListItem.html │ ├── EmptyListItem.markdown │ ├── InBlockquote.html │ ├── InBlockquote.markdown │ ├── Indents.html │ ├── Indents.markdown │ ├── ListsAndHRs.html │ ├── ListsAndHRs.markdown │ ├── ListsAndSetextHeaders.html │ ├── ListsAndSetextHeaders.markdown │ ├── MultipleBlankLines.html │ ├── MultipleBlankLines.markdown │ ├── Start.html │ ├── Start.markdown │ ├── Sublists.html │ ├── Sublists.markdown │ ├── TightAndLoose.html │ ├── TightAndLoose.markdown │ ├── TightLooseBlockquote.html │ ├── TightLooseBlockquote.markdown │ ├── TightLooseMore.html │ ├── TightLooseMore.markdown │ ├── TwoBlankLinesEndList.html │ └── TwoBlankLinesEndList.markdown │ ├── Makefile │ ├── Misc │ ├── BackslashEscapes.html │ ├── BackslashEscapes.markdown │ ├── Laziness.html │ ├── Laziness.markdown │ ├── LineBreaks.html │ ├── LineBreaks.markdown │ ├── Transitions.html │ └── Transitions.markdown │ ├── Original │ ├── Amps_and_angle_encoding.html │ ├── Amps_and_angle_encoding.markdown │ ├── Auto_links.html │ ├── Auto_links.markdown │ ├── Backslash_escapes.html │ ├── Backslash_escapes.markdown │ ├── Blockquotes_with_code_blocks.html │ ├── Blockquotes_with_code_blocks.markdown │ ├── Code_Blocks.html │ ├── Code_Blocks.markdown │ ├── Code_Spans.html │ ├── Code_Spans.markdown │ ├── Horizontal_rules.html │ ├── Horizontal_rules.markdown │ ├── Images.html │ ├── Images.markdown │ ├── Inline_HTML_Advanced.html │ ├── Inline_HTML_Advanced.markdown │ ├── Inline_HTML_Simple.html │ ├── Inline_HTML_Simple.markdown │ ├── Inline_HTML_comments.html │ ├── Inline_HTML_comments.markdown │ ├── Links_inline_style.html │ ├── Links_inline_style.markdown │ ├── Links_reference_style.html │ ├── Links_reference_style.markdown │ ├── Links_shortcut_references.html │ ├── Links_shortcut_references.markdown │ ├── Literal_quotes_in_titles.html │ ├── Literal_quotes_in_titles.markdown │ ├── Markdown_Documentation_Basics.html │ ├── Markdown_Documentation_Basics.markdown │ ├── Markdown_Documentation_Syntax.html │ ├── Markdown_Documentation_Syntax.markdown │ ├── Nested_blockquotes.html │ ├── Nested_blockquotes.markdown │ ├── Ordered_and_unordered_lists.html │ ├── Ordered_and_unordered_lists.markdown │ ├── README │ ├── Strong_and_em_together.html │ ├── Strong_and_em_together.markdown │ ├── Tabs.html │ ├── Tabs.markdown │ ├── Tidyness.html │ └── Tidyness.markdown │ └── Tabs │ ├── TabConversionUnicode.html │ └── TabConversionUnicode.markdown ├── elm-format-test-lib ├── LICENSE ├── elm-format-test-lib.cabal ├── package.yaml ├── src │ ├── CommandLine │ │ └── TestWorld.hs │ ├── Data │ │ └── FileTree.hs │ ├── Expect.hs │ └── TestWorld │ │ └── Stdio.hs └── test │ ├── Data │ └── FileTreeTest.hs │ └── Tests.hs ├── elm-format.cabal ├── hie.yaml ├── keys └── github-actions.pub ├── nix ├── sources.json ├── sources.nix └── tools.nix ├── package.yaml ├── package ├── elm-tooling │ ├── .gitignore │ ├── build.sh │ └── generate.sh ├── linux │ ├── archlinux │ │ ├── .gitignore │ │ ├── README.md │ │ └── Vagrantfile │ ├── build-in-docker.sh │ └── build-package.sh ├── mac │ └── build-package.sh ├── nix │ ├── .gitignore │ ├── build.sh │ └── generate_derivation.sh ├── npm │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── base-package.nix │ ├── bin │ │ └── elm-format │ ├── binary-package.nix │ ├── binary.js │ ├── default.nix │ ├── elm-format-0.8.5-test.nix │ ├── elm-format-0.8.6-rc.1.nix │ ├── elm-format-0.8.6-windows.nix │ ├── elm-format-0.8.6.nix │ ├── elm-format-0.8.7-rc.1.nix │ ├── elm-format-0.8.7.nix │ ├── index.js │ ├── package.json │ ├── platform-info.nix │ ├── shell.nix │ └── workspace.nix └── win │ ├── .gitignore │ ├── Vagrantfile │ ├── build-package.sh │ ├── links.txt │ ├── setup.md │ ├── shell │ ├── InstallChocolatey.ps1 │ ├── InstallPackages.bat │ └── main.cmd │ └── wine.sh ├── parser ├── LICENSE ├── bench │ ├── CompilerBenchmarks.elm │ ├── elm-package.json │ └── src │ │ ├── AnimateBench.elm │ │ ├── ArrayBench.elm │ │ ├── Benchmark.elm │ │ ├── CtorBench.elm │ │ ├── DictBench.elm │ │ ├── IfBench.elm │ │ ├── LargeDictionary.elm │ │ ├── ListBench.elm │ │ ├── Native │ │ ├── Benchmark.js │ │ └── BenchmarkJS.js │ │ ├── PatternMatchBench.elm │ │ ├── RecordBench.elm │ │ ├── SmallCtorBench.elm │ │ ├── SmallRecordBench.elm │ │ ├── SmallTupleBench.elm │ │ ├── TodoBench.elm │ │ └── TupleBench.elm └── tests │ └── test-files │ ├── bad │ ├── BBTArgs │ ├── IncompletePatternMatch.elm │ ├── InfiniteType.elm │ ├── NonElementMain.elm │ └── Strings │ │ └── ExtraClose.elm │ └── good │ ├── AliasSubstitution.elm │ ├── CaseExpression3.elm │ ├── Lists │ ├── EmptyList.elm │ ├── ListRange.elm │ └── NonEmptyList.elm │ ├── NoExpressions.elm │ ├── Otherwise.elm │ ├── Ports.elm │ ├── PortsWithTypeAliases.elm │ ├── QuotesAndComments.elm │ ├── Soundness │ ├── Apply.elm │ ├── ApplyAnnotated.elm │ ├── Id.elm │ ├── IdAnnotated.elm │ ├── TrickyId.elm │ └── TrickyIdAnnotated.elm │ ├── Strings │ ├── Multiline.elm │ └── MultilineNormal.elm │ ├── TailRecursive.elm │ └── Unify │ └── NonHomogeneousRecords.elm ├── shell.nix ├── src ├── ElmFormat │ ├── Cli.hs │ ├── CliFlags.hs │ ├── Messages.hs │ └── Version.hs └── Main.hs └── tests ├── CommonMarkTests.hs ├── Integration ├── CliTest.hs ├── LiteralTest.hs └── data │ └── minimal.elm ├── Test.hs ├── Test ├── ElmSourceGenerators.hs ├── Generators.hs └── Property.hs ├── json-format-schema.json ├── run-tests.sh ├── stdin-error.stderr └── golden ├── test-files ├── CommonMark │ ├── .editorconfig │ ├── .gitignore │ ├── CommonMark.dtd │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── RELEASE_CHECKLIST.md │ ├── alternative-html-blocks.txt │ ├── changelog.txt │ ├── index.js │ ├── package.json │ ├── spec.txt │ ├── test │ │ ├── cmark.py │ │ ├── normalize.py │ │ └── spec_tests.py │ └── tools │ │ ├── make_spec.lua │ │ ├── spec2js.js │ │ ├── template.commonmark │ │ ├── template.html │ │ └── template.latex ├── bad │ └── Elm-0.19 │ │ ├── UnexpectedComma.elm │ │ ├── UnexpectedComma.output.txt │ │ ├── UnexpectedEndOfInput.elm │ │ └── UnexpectedEndOfInput.output.txt ├── directory │ ├── invalid.elm │ └── valid.elm ├── from-json │ └── Elm-0.19 │ │ ├── Declarations.elm │ │ ├── Declarations.json │ │ ├── Expressions.elm │ │ ├── Expressions.json │ │ ├── ModuleComments.elm │ │ ├── ModuleComments.json │ │ ├── ModuleImports.elm │ │ ├── ModuleImports.json │ │ ├── Patterns.elm │ │ ├── Patterns.json │ │ ├── Simple.elm │ │ ├── Simple.json │ │ ├── Types.elm │ │ └── Types.json ├── good │ ├── Elm-0.16 │ │ └── AllSyntax │ │ │ └── PatternsRequireParens.elm │ ├── Elm-0.17 │ │ ├── AllSyntax.elm │ │ ├── AllSyntax │ │ │ ├── BlockComments │ │ │ │ ├── Module.elm │ │ │ │ └── ModuleEffect.elm │ │ │ ├── InfixOperators.elm │ │ │ ├── LineComments │ │ │ │ ├── Module.elm │ │ │ │ └── ModuleEffect.elm │ │ │ ├── Module.elm │ │ │ ├── ModuleEffect.elm │ │ │ ├── OldKeywords.elm │ │ │ └── Range.elm │ │ ├── Export.elm │ │ ├── TopLevelSpacing.elm │ │ ├── WorkaroundNegativeCasePatterns.elm │ │ └── elm-lang │ │ │ ├── examples │ │ │ ├── Spelling.elm │ │ │ ├── http.elm │ │ │ ├── random.elm │ │ │ ├── time.elm │ │ │ └── websockets.elm │ │ │ └── websocket │ │ │ └── WebSocket.elm │ ├── Elm-0.18 │ │ ├── AllSyntax │ │ │ ├── AllSyntax.elm │ │ │ ├── BlockComments │ │ │ │ ├── Module.elm │ │ │ │ ├── Patterns.elm │ │ │ │ └── Types.elm │ │ │ ├── Comments.elm │ │ │ ├── DeclaraionSpacing.elm │ │ │ ├── Declarations.elm │ │ │ ├── DocComments.elm │ │ │ ├── DocCommentsStartingWtihAtDocs.elm │ │ │ ├── Expressions.elm │ │ │ ├── Expressions │ │ │ │ ├── BinaryOperators.elm │ │ │ │ └── Unary.elm │ │ │ ├── GLShader.elm │ │ │ ├── LineComments │ │ │ │ ├── Module.elm │ │ │ │ ├── Patterns.elm │ │ │ │ └── Types.elm │ │ │ ├── Literals.elm │ │ │ ├── Module.elm │ │ │ ├── ModuleMultiline.elm │ │ │ ├── ModuleWithDocs.elm │ │ │ ├── OldKeywords.elm │ │ │ ├── Patterns.elm │ │ │ └── Types.elm │ │ ├── ApiSketch.elm │ │ ├── Comments.elm │ │ ├── Export.elm │ │ ├── Simple.elm │ │ ├── TheSeamau5 │ │ │ └── elm-check │ │ │ │ └── Check.elm │ │ ├── TopLevelSpacing.elm │ │ ├── TrueFalseInIdentifiers.elm │ │ ├── WorkaroundNegativeCasePatterns.elm │ │ ├── avh4 │ │ │ └── elm-fifo │ │ │ │ └── Fifo.elm │ │ ├── elm │ │ │ └── core │ │ │ │ └── Basics.elm │ │ ├── evancz │ │ │ └── start-app │ │ │ │ └── StartApp.elm │ │ ├── mdgriffith │ │ │ └── style-elements │ │ │ │ └── Element.elm │ │ └── rtfeldman │ │ │ └── dreamwriter │ │ │ ├── Editor.elm │ │ │ ├── LeftSidebar.elm │ │ │ ├── RightSidebar.elm │ │ │ └── WordGraph.elm │ ├── Elm-0.19 │ │ ├── AllSyntax │ │ │ ├── Declarations.elm │ │ │ ├── Declarations.json │ │ │ ├── Declarations.json-roundtrip │ │ │ ├── Expressions.elm │ │ │ ├── Expressions.json │ │ │ ├── Expressions.json-roundtrip │ │ │ ├── InfixDeclaration.elm │ │ │ ├── Literals.elm │ │ │ ├── Literals.json │ │ │ ├── Literals.json-roundtrip │ │ │ ├── Module.elm │ │ │ ├── Module.json │ │ │ ├── Module.json-roundtrip │ │ │ ├── Patterns.elm │ │ │ ├── Patterns.json │ │ │ ├── Patterns.json-roundtrip │ │ │ ├── Types.elm │ │ │ ├── Types.json │ │ │ └── Types.json-roundtrip │ │ ├── GLShader.elm │ │ ├── GLShader.json │ │ ├── GLShader.json-roundtrip │ │ ├── InfixAsVariableName.elm │ │ ├── TopLevelSpacing.elm │ │ └── WorkaroundNegativeCasePatterns.elm │ └── json │ │ ├── ExternalReferences.elm │ │ ├── ExternalReferences.json │ │ └── ExternalReferences.json-roundtrip ├── recursive-directory │ ├── nested │ │ └── invalid.elm │ └── valid.elm ├── transform │ ├── Elm-0.16 │ │ ├── github-avh4-elm-format-184.elm │ │ └── github-avh4-elm-format-184.formatted.elm │ ├── Elm-0.18 │ │ ├── AllSyntax │ │ │ ├── Patterns.elm │ │ │ ├── Patterns.formatted.elm │ │ │ ├── Types.elm │ │ │ └── Types.formatted.elm │ │ ├── DocCommentAtDocs.elm │ │ ├── DocCommentAtDocs.formatted.elm │ │ ├── DocCommentCheapskateReferenceBug.elm │ │ ├── DocCommentCheapskateReferenceBug.formatted.elm │ │ ├── DocCommentCodeExample.elm │ │ ├── DocCommentCodeExample.formatted.elm │ │ ├── DocCommentMarkdownSafety.elm │ │ ├── DocCommentMarkdownSafety.formatted.elm │ │ ├── Empty.elm │ │ ├── Empty.formatted.elm │ │ ├── Examples.elm │ │ ├── Examples.formatted.elm │ │ ├── LenientEqualsColon.elm │ │ ├── LenientEqualsColon.formatted.elm │ │ ├── MissingImportParens.elm │ │ ├── MissingImportParens.formatted.elm │ │ ├── QuickCheck-4562ebccb71ea9f622fb99cdf32b2923f6f9d34f-2529668492575674138.elm │ │ ├── QuickCheck-4562ebccb71ea9f622fb99cdf32b2923f6f9d34f-2529668492575674138.formatted.elm │ │ ├── QuickCheck-94f37da84c1310f03dcfa1059ce870b73c94a825--6449652945938213463.elm │ │ ├── QuickCheck-94f37da84c1310f03dcfa1059ce870b73c94a825--6449652945938213463.formatted.elm │ │ ├── Sorting.elm │ │ ├── Sorting.formatted.elm │ │ ├── TrickyModule1.elm │ │ ├── TrickyModule1.formatted.elm │ │ ├── TrickyModule2.elm │ │ ├── TrickyModule2.formatted.elm │ │ ├── TrickyModule3.elm │ │ ├── TrickyModule3.formatted.elm │ │ ├── TrickyModule4.elm │ │ ├── TrickyModule4.formatted.elm │ │ ├── UnnecessaryParens.elm │ │ ├── UnnecessaryParens.formatted.elm │ │ ├── WindowsEol.elm │ │ └── WindowsEol.formatted.elm │ └── Elm-0.19 │ │ ├── AddMissingExposingForImport.elm │ │ ├── AddMissingExposingForImport.formatted.elm │ │ ├── AddMissingExposingForModule.elm │ │ ├── AddMissingExposingForModule.formatted.elm │ │ ├── ClarifyNegativeExponentiationPrecedence.elm │ │ ├── ClarifyNegativeExponentiationPrecedence.formatted.elm │ │ ├── DistinguishCharStartFromRef.elm │ │ ├── DistinguishCharStartFromRef.formatted.elm │ │ ├── ExplicitlyListExposedValues.elm │ │ ├── ExplicitlyListExposedValues.formatted.elm │ │ ├── ListAllExportsNoExposing.elm │ │ ├── ListAllExportsNoExposing.formatted.elm │ │ ├── ListAllExportsNoModuleLine.elm │ │ ├── ListAllExportsNoModuleLine.formatted.elm │ │ ├── ListDocumentedExportsNoExposing.elm │ │ ├── ListDocumentedExportsNoExposing.formatted.elm │ │ ├── ParseTabsInLiterals.elm │ │ ├── ParseTabsInLiterals.formatted.elm │ │ ├── ReplaceThenByOfInCase.elm │ │ ├── ReplaceThenByOfInCase.formatted.elm │ │ ├── TransformFatArrow.elm │ │ └── TransformFatArrow.formatted.elm ├── validate1.json └── validate2.json └── usage.stdout └── golden /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/.dockerignore -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use nix 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/cache-build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/.github/actions/cache-build/action.yml -------------------------------------------------------------------------------- /.github/actions/cache-haskell-deps/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/.github/actions/cache-haskell-deps/action.yml -------------------------------------------------------------------------------- /.github/actions/git-tags/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/.github/actions/git-tags/action.yml -------------------------------------------------------------------------------- /.github/actions/haskell/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/.github/actions/haskell/action.yml -------------------------------------------------------------------------------- /.github/actions/release-artifact/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/.github/actions/release-artifact/action.yml -------------------------------------------------------------------------------- /.github/workflows/Build release (lamdera-community).yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/.github/workflows/Build release (lamdera-community).yml -------------------------------------------------------------------------------- /.github/workflows/Build release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/.github/workflows/Build release.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/Check published packages (nixpkgs).yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/.github/workflows/Check published packages (nixpkgs).yml -------------------------------------------------------------------------------- /.github/workflows/Check published packages (npm).yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/.github/workflows/Check published packages (npm).yml -------------------------------------------------------------------------------- /.github/workflows/Snapshot release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/.github/workflows/Snapshot release.yml -------------------------------------------------------------------------------- /.github/workflows/Touch cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/.github/workflows/Touch cache.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.hlint.yaml: -------------------------------------------------------------------------------- 1 | - ignore: {name: "Eta reduce"} 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/README.md -------------------------------------------------------------------------------- /Release Notes/0.1-alpha2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.1-alpha2.md -------------------------------------------------------------------------------- /Release Notes/0.2.0-alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.2.0-alpha.md -------------------------------------------------------------------------------- /Release Notes/0.3.0-alpha-elm017rc1-rc1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.3.0-alpha-elm017rc1-rc1.md -------------------------------------------------------------------------------- /Release Notes/0.3.0-alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.3.0-alpha.md -------------------------------------------------------------------------------- /Release Notes/0.3.1-alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.3.1-alpha.md -------------------------------------------------------------------------------- /Release Notes/0.4.0-alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.4.0-alpha.md -------------------------------------------------------------------------------- /Release Notes/0.5.0-alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.5.0-alpha.md -------------------------------------------------------------------------------- /Release Notes/0.5.1-alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.5.1-alpha.md -------------------------------------------------------------------------------- /Release Notes/0.5.2-alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.5.2-alpha.md -------------------------------------------------------------------------------- /Release Notes/0.6.0-alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.6.0-alpha.md -------------------------------------------------------------------------------- /Release Notes/0.6.1-alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.6.1-alpha.md -------------------------------------------------------------------------------- /Release Notes/0.7.0-exp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.7.0-exp.md -------------------------------------------------------------------------------- /Release Notes/0.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.8.0.md -------------------------------------------------------------------------------- /Release Notes/0.8.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.8.1.md -------------------------------------------------------------------------------- /Release Notes/0.8.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.8.2.md -------------------------------------------------------------------------------- /Release Notes/0.8.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.8.3.md -------------------------------------------------------------------------------- /Release Notes/0.8.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.8.4.md -------------------------------------------------------------------------------- /Release Notes/0.8.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.8.5.md -------------------------------------------------------------------------------- /Release Notes/0.8.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.8.6.md -------------------------------------------------------------------------------- /Release Notes/0.8.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Release Notes/0.8.7.md -------------------------------------------------------------------------------- /Shakefile/build-elm-format.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Shakefile/build-elm-format.cabal -------------------------------------------------------------------------------- /Shakefile/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Shakefile/package.yaml -------------------------------------------------------------------------------- /Shakefile/src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Shakefile/src/Main.hs -------------------------------------------------------------------------------- /Shakefile/src/Shakefiles/Dependencies.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Shakefile/src/Shakefiles/Dependencies.hs -------------------------------------------------------------------------------- /Shakefile/src/Shakefiles/ElmFormat/IntegrationTests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Shakefile/src/Shakefiles/ElmFormat/IntegrationTests.hs -------------------------------------------------------------------------------- /Shakefile/src/Shakefiles/Extra.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Shakefile/src/Shakefiles/Extra.hs -------------------------------------------------------------------------------- /Shakefile/src/Shakefiles/Haskell.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Shakefile/src/Shakefiles/Haskell.hs -------------------------------------------------------------------------------- /Shakefile/src/Shakefiles/Haskell/Hpc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Shakefile/src/Shakefiles/Haskell/Hpc.hs -------------------------------------------------------------------------------- /Shakefile/src/Shakefiles/ListFiles.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Shakefile/src/Shakefiles/ListFiles.hs -------------------------------------------------------------------------------- /Shakefile/src/Shakefiles/NestedCheckout.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Shakefile/src/Shakefiles/NestedCheckout.hs -------------------------------------------------------------------------------- /Shakefile/src/Shakefiles/NixBuild.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Shakefile/src/Shakefiles/NixBuild.hs -------------------------------------------------------------------------------- /Shakefile/src/Shakefiles/Platform.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Shakefile/src/Shakefiles/Platform.hs -------------------------------------------------------------------------------- /Shakefile/src/Shakefiles/Prelude.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Shakefile/src/Shakefiles/Prelude.hs -------------------------------------------------------------------------------- /Shakefile/src/Shakefiles/Shellcheck.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Shakefile/src/Shakefiles/Shellcheck.hs -------------------------------------------------------------------------------- /Shakefile/src/Shakefiles/Signature.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Shakefile/src/Shakefiles/Signature.hs -------------------------------------------------------------------------------- /Style Guide/.gitignore: -------------------------------------------------------------------------------- 1 | /_book/ 2 | /node_modules/ 3 | -------------------------------------------------------------------------------- /Style Guide/CI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Style Guide/CI.md -------------------------------------------------------------------------------- /Style Guide/Declarations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Style Guide/Declarations.md -------------------------------------------------------------------------------- /Style Guide/Expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Style Guide/Expressions.md -------------------------------------------------------------------------------- /Style Guide/Imports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Style Guide/Imports.md -------------------------------------------------------------------------------- /Style Guide/Lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Style Guide/Lists.md -------------------------------------------------------------------------------- /Style Guide/Markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Style Guide/Markdown.md -------------------------------------------------------------------------------- /Style Guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Style Guide/README.md -------------------------------------------------------------------------------- /Style Guide/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Style Guide/SUMMARY.md -------------------------------------------------------------------------------- /Style Guide/Sections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Style Guide/Sections.md -------------------------------------------------------------------------------- /Style Guide/Upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Style Guide/Upgrading.md -------------------------------------------------------------------------------- /Style Guide/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/Style Guide/book.json -------------------------------------------------------------------------------- /Style Guide/styles/website.css: -------------------------------------------------------------------------------- 1 | .markdown-section pre { 2 | line-height: 1em; 3 | } 4 | -------------------------------------------------------------------------------- /avh4-lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/avh4-lib/LICENSE -------------------------------------------------------------------------------- /avh4-lib/avh4-lib.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/avh4-lib/avh4-lib.cabal -------------------------------------------------------------------------------- /avh4-lib/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/avh4-lib/package.yaml -------------------------------------------------------------------------------- /avh4-lib/src/CommandLine/Filesystem.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/avh4-lib/src/CommandLine/Filesystem.hs -------------------------------------------------------------------------------- /avh4-lib/src/CommandLine/World.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/avh4-lib/src/CommandLine/World.hs -------------------------------------------------------------------------------- /avh4-lib/src/CommandLine/World/RealWorld.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/avh4-lib/src/CommandLine/World/RealWorld.hs -------------------------------------------------------------------------------- /avh4-lib/src/Data/Coapplicative.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/avh4-lib/src/Data/Coapplicative.hs -------------------------------------------------------------------------------- /avh4-lib/src/Data/Either/Extra.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/avh4-lib/src/Data/Either/Extra.hs -------------------------------------------------------------------------------- /avh4-lib/src/Data/Indexed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/avh4-lib/src/Data/Indexed.hs -------------------------------------------------------------------------------- /avh4-lib/src/Data/List/Extra.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/avh4-lib/src/Data/List/Extra.hs -------------------------------------------------------------------------------- /avh4-lib/src/Data/ReversedList.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/avh4-lib/src/Data/ReversedList.hs -------------------------------------------------------------------------------- /avh4-lib/src/Data/Text/Extra.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/avh4-lib/src/Data/Text/Extra.hs -------------------------------------------------------------------------------- /avh4-lib/src/Elm/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/avh4-lib/src/Elm/Utils.hs -------------------------------------------------------------------------------- /avh4-lib/src/Regex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/avh4-lib/src/Regex.hs -------------------------------------------------------------------------------- /avh4-lib/test/Data/List/ExtraTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/avh4-lib/test/Data/List/ExtraTest.hs -------------------------------------------------------------------------------- /avh4-lib/test/Data/Text/ExtraTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/avh4-lib/test/Data/Text/ExtraTest.hs -------------------------------------------------------------------------------- /avh4-lib/test/Tests.hs: -------------------------------------------------------------------------------- 1 | {-# OPTIONS_GHC -F -pgmF tasty-discover #-} 2 | -------------------------------------------------------------------------------- /cabal.config: -------------------------------------------------------------------------------- 1 | split-objs: True 2 | -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/cabal.project -------------------------------------------------------------------------------- /cabal.project.freeze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/cabal.project.freeze -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/default.nix -------------------------------------------------------------------------------- /dev/Documentation/Build Commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/dev/Documentation/Build Commands.md -------------------------------------------------------------------------------- /dev/Documentation/Publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/dev/Documentation/Publishing.md -------------------------------------------------------------------------------- /dev/Documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/dev/Documentation/README.md -------------------------------------------------------------------------------- /dev/Documentation/Signatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/dev/Documentation/Signatures.md -------------------------------------------------------------------------------- /dev/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/dev/build.sh -------------------------------------------------------------------------------- /elm-format-lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/LICENSE -------------------------------------------------------------------------------- /elm-format-lib/elm-format-lib.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/elm-format-lib.cabal -------------------------------------------------------------------------------- /elm-format-lib/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/package.yaml -------------------------------------------------------------------------------- /elm-format-lib/src/AST/Helpers.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/AST/Helpers.hs -------------------------------------------------------------------------------- /elm-format-lib/src/AST/Listing.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/AST/Listing.hs -------------------------------------------------------------------------------- /elm-format-lib/src/AST/MatchReferences.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/AST/MatchReferences.hs -------------------------------------------------------------------------------- /elm-format-lib/src/AST/Module.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/AST/Module.hs -------------------------------------------------------------------------------- /elm-format-lib/src/AST/Structure.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/AST/Structure.hs -------------------------------------------------------------------------------- /elm-format-lib/src/AST/V0_16.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/AST/V0_16.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Box.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Box.hs -------------------------------------------------------------------------------- /elm-format-lib/src/CommandLine/InfoFormatter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/CommandLine/InfoFormatter.hs -------------------------------------------------------------------------------- /elm-format-lib/src/CommandLine/Program.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/CommandLine/Program.hs -------------------------------------------------------------------------------- /elm-format-lib/src/CommandLine/ResolveFiles.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/CommandLine/ResolveFiles.hs -------------------------------------------------------------------------------- /elm-format-lib/src/CommandLine/TransformFiles.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/CommandLine/TransformFiles.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Data/Utf8.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Data/Utf8.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Elm/String.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Elm/String.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/AST/BinaryOperatorPrecedence.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/AST/BinaryOperatorPrecedence.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/AST/PatternMatching.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/AST/PatternMatching.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/AST/PublicAST.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/AST/PublicAST.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/AST/PublicAST/Comment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/AST/PublicAST/Comment.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/AST/PublicAST/Config.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/AST/PublicAST/Config.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/AST/PublicAST/Core.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/AST/PublicAST/Core.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/AST/PublicAST/Expression.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/AST/PublicAST/Expression.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/AST/PublicAST/MaybeF.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/AST/PublicAST/MaybeF.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/AST/PublicAST/Module.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/AST/PublicAST/Module.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/AST/PublicAST/Pattern.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/AST/PublicAST/Pattern.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/AST/PublicAST/Reference.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/AST/PublicAST/Reference.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/AST/PublicAST/Type.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/AST/PublicAST/Type.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/AST/Shared.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/AST/Shared.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/ImportInfo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/ImportInfo.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/KnownContents.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/KnownContents.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/Parse.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/Parse.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/Render/Box.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/Render/Box.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/Render/ElmStructure.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/Render/ElmStructure.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/Render/Markdown.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/Render/Markdown.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmFormat/Render/Text.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmFormat/Render/Text.hs -------------------------------------------------------------------------------- /elm-format-lib/src/ElmVersion.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/ElmVersion.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/Binop.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/Binop.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/Comments.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/Comments.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/Common.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/Common.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/Declaration.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/Declaration.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/Expression.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/Expression.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/Helpers.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/Helpers.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/IParser.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/IParser.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/Literal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/Literal.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/Markdown.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/Markdown.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/Module.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/Module.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/Number.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/Number.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/Parse.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/Parse.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/ParsecAdapter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/ParsecAdapter.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/Pattern.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/Pattern.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/Primitives.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/Primitives.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/State.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/State.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/String.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/String.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/Type.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/Type.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/Variable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/Variable.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Parse/Whitespace.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Parse/Whitespace.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Reporting/Annotation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Reporting/Annotation.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Reporting/Error/Docs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Reporting/Error/Docs.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Reporting/Error/Syntax.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Reporting/Error/Syntax.hs -------------------------------------------------------------------------------- /elm-format-lib/src/Reporting/Result.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/src/Reporting/Result.hs -------------------------------------------------------------------------------- /elm-format-lib/test/AST/MatchReferencesTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/test/AST/MatchReferencesTest.hs -------------------------------------------------------------------------------- /elm-format-lib/test/BoxTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/test/BoxTest.hs -------------------------------------------------------------------------------- /elm-format-lib/test/ElmFormat/AST/BinaryOperatorPrecedenceTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/test/ElmFormat/AST/BinaryOperatorPrecedenceTest.hs -------------------------------------------------------------------------------- /elm-format-lib/test/ElmFormat/ImportInfoTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/test/ElmFormat/ImportInfoTest.hs -------------------------------------------------------------------------------- /elm-format-lib/test/ElmFormat/Render/ElmStructureTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/test/ElmFormat/Render/ElmStructureTest.hs -------------------------------------------------------------------------------- /elm-format-lib/test/Parse/ExpressionTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/test/Parse/ExpressionTest.hs -------------------------------------------------------------------------------- /elm-format-lib/test/Parse/HelpersTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/test/Parse/HelpersTest.hs -------------------------------------------------------------------------------- /elm-format-lib/test/Parse/LiteralTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/test/Parse/LiteralTest.hs -------------------------------------------------------------------------------- /elm-format-lib/test/Parse/PatternTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/test/Parse/PatternTest.hs -------------------------------------------------------------------------------- /elm-format-lib/test/Parse/TestHelpers.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/test/Parse/TestHelpers.hs -------------------------------------------------------------------------------- /elm-format-lib/test/Parse/TestHelpersTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/test/Parse/TestHelpersTest.hs -------------------------------------------------------------------------------- /elm-format-lib/test/Parse/TypeTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-lib/test/Parse/TypeTest.hs -------------------------------------------------------------------------------- /elm-format-lib/test/Tests.hs: -------------------------------------------------------------------------------- 1 | {-# OPTIONS_GHC -F -pgmF tasty-discover #-} 2 | -------------------------------------------------------------------------------- /elm-format-markdown/Cheapskate/Inlines.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/Cheapskate/Inlines.hs -------------------------------------------------------------------------------- /elm-format-markdown/Cheapskate/Parse.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/Cheapskate/Parse.hs -------------------------------------------------------------------------------- /elm-format-markdown/Cheapskate/ParserCombinators.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/Cheapskate/ParserCombinators.hs -------------------------------------------------------------------------------- /elm-format-markdown/Cheapskate/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/Cheapskate/Types.hs -------------------------------------------------------------------------------- /elm-format-markdown/Cheapskate/Util.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/Cheapskate/Util.hs -------------------------------------------------------------------------------- /elm-format-markdown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/LICENSE -------------------------------------------------------------------------------- /elm-format-markdown/elm-format-markdown.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/elm-format-markdown.cabal -------------------------------------------------------------------------------- /elm-format-markdown/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/package.yaml -------------------------------------------------------------------------------- /elm-format-markdown/tests/Blockquotes/Indents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Blockquotes/Indents.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Blockquotes/Indents.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Blockquotes/Indents.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Blockquotes/Indents.markdown~: -------------------------------------------------------------------------------- 1 | > one 2 | > blockquote -------------------------------------------------------------------------------- /elm-format-markdown/tests/Blockquotes/Nesting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Blockquotes/Nesting.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Blockquotes/Nesting.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Blockquotes/Nesting.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Blockquotes/Separation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Blockquotes/Separation.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Blockquotes/Separation.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Blockquotes/Separation.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/BlankLines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/BlankLines.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/BlankLines.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/BlankLines.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/BlankLinesAtEnd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/BlankLinesAtEnd.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/BlankLinesAtEnd.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/BlankLinesAtEnd.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/FenceMatching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/FenceMatching.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/FenceMatching.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/FenceMatching.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/FencedCodeBlocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/FencedCodeBlocks.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/FencedCodeBlocks.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/FencedCodeBlocks.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/IndentedCodeBlocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/IndentedCodeBlocks.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/IndentedCodeBlocks.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/IndentedCodeBlocks.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/IndentedFences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/IndentedFences.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/IndentedFences.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/IndentedFences.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/IndentedInLists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/IndentedInLists.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/IndentedInLists.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/IndentedInLists.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/Inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/Inline.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/Inline.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/Inline.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/ListBreakAfter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/ListBreakAfter.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/ListBreakAfter.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/ListBreakAfter.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/WhiteLines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/WhiteLines.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Code/WhiteLines.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Code/WhiteLines.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Emphasis/Escapes.html: -------------------------------------------------------------------------------- 1 |

hi* there

2 | -------------------------------------------------------------------------------- /elm-format-markdown/tests/Emphasis/Escapes.markdown: -------------------------------------------------------------------------------- 1 | *hi\* there* -------------------------------------------------------------------------------- /elm-format-markdown/tests/Emphasis/NestedEmphAndStrong.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Emphasis/NestedEmphAndStrong.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Emphasis/NestedEmphAndStrong.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Emphasis/NestedEmphAndStrong.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Emphasis/Pathological.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Emphasis/Pathological.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Emphasis/Pathological.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Emphasis/Pathological.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Emphasis/Punctuation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Emphasis/Punctuation.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Emphasis/Punctuation.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Emphasis/Punctuation.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/HTML/Blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/HTML/Blocks.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/HTML/Blocks.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/HTML/Blocks.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/HTML/Inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/HTML/Inline.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/HTML/Inline.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/HTML/Inline.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/HTML/UppercaseTags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/HTML/UppercaseTags.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/HTML/UppercaseTags.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/HTML/UppercaseTags.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Headers/ATX.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Headers/ATX.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Headers/ATX.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Headers/ATX.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Headers/Setext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Headers/Setext.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Headers/Setext.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Headers/Setext.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/AngleBrackets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Links/AngleBrackets.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/AngleBrackets.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Links/AngleBrackets.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/AutoLinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Links/AutoLinks.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/AutoLinks.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Links/AutoLinks.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/BackticksInLinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Links/BackticksInLinks.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/BackticksInLinks.markdown: -------------------------------------------------------------------------------- 1 | [the right bracket character (`]`)](/url) 2 | -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/BareLinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Links/BareLinks.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/BareLinks.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Links/BareLinks.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/CaseInsensitiveReferences.html: -------------------------------------------------------------------------------- 1 |

Толпой is a Russian word.

2 | -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/CaseInsensitiveReferences.markdown: -------------------------------------------------------------------------------- 1 | [Толпой] is a Russian word. 2 | 3 | [ТОЛПОЙ]: /url 4 | -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/Entities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Links/Entities.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/Entities.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Links/Entities.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/InlineLinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Links/InlineLinks.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/InlineLinks.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Links/InlineLinks.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/ParensInURLs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Links/ParensInURLs.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/ParensInURLs.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Links/ParensInURLs.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/ReferenceLinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Links/ReferenceLinks.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Links/ReferenceLinks.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Links/ReferenceLinks.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/CodeBlocksInLists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/CodeBlocksInLists.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/CodeBlocksInLists.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/CodeBlocksInLists.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/ConsecutiveLists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/ConsecutiveLists.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/ConsecutiveLists.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/ConsecutiveLists.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/EmptyListItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/EmptyListItem.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/EmptyListItem.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/EmptyListItem.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/InBlockquote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/InBlockquote.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/InBlockquote.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/InBlockquote.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/Indents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/Indents.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/Indents.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/Indents.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/ListsAndHRs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/ListsAndHRs.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/ListsAndHRs.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/ListsAndHRs.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/ListsAndSetextHeaders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/ListsAndSetextHeaders.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/ListsAndSetextHeaders.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/ListsAndSetextHeaders.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/MultipleBlankLines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/MultipleBlankLines.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/MultipleBlankLines.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/MultipleBlankLines.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/Start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/Start.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/Start.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/Start.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/Sublists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/Sublists.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/Sublists.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/Sublists.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/TightAndLoose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/TightAndLoose.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/TightAndLoose.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/TightAndLoose.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/TightLooseBlockquote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/TightLooseBlockquote.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/TightLooseBlockquote.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/TightLooseBlockquote.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/TightLooseMore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/TightLooseMore.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/TightLooseMore.markdown: -------------------------------------------------------------------------------- 1 | * foo 2 | * bar 3 | 4 | blah -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/TwoBlankLinesEndList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/TwoBlankLinesEndList.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Lists/TwoBlankLinesEndList.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Lists/TwoBlankLinesEndList.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Makefile -------------------------------------------------------------------------------- /elm-format-markdown/tests/Misc/BackslashEscapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Misc/BackslashEscapes.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Misc/BackslashEscapes.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Misc/BackslashEscapes.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Misc/Laziness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Misc/Laziness.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Misc/Laziness.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Misc/Laziness.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Misc/LineBreaks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Misc/LineBreaks.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Misc/LineBreaks.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Misc/LineBreaks.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Misc/Transitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Misc/Transitions.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Misc/Transitions.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Misc/Transitions.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Amps_and_angle_encoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Amps_and_angle_encoding.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Amps_and_angle_encoding.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Amps_and_angle_encoding.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Auto_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Auto_links.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Auto_links.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Auto_links.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Backslash_escapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Backslash_escapes.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Backslash_escapes.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Backslash_escapes.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Blockquotes_with_code_blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Blockquotes_with_code_blocks.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Blockquotes_with_code_blocks.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Blockquotes_with_code_blocks.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Code_Blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Code_Blocks.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Code_Blocks.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Code_Blocks.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Code_Spans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Code_Spans.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Code_Spans.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Code_Spans.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Horizontal_rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Horizontal_rules.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Horizontal_rules.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Horizontal_rules.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Images.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Images.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Images.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Inline_HTML_Advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Inline_HTML_Advanced.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Inline_HTML_Advanced.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Inline_HTML_Advanced.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Inline_HTML_Simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Inline_HTML_Simple.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Inline_HTML_Simple.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Inline_HTML_Simple.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Inline_HTML_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Inline_HTML_comments.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Inline_HTML_comments.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Inline_HTML_comments.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Links_inline_style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Links_inline_style.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Links_inline_style.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Links_inline_style.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Links_reference_style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Links_reference_style.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Links_reference_style.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Links_reference_style.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Links_shortcut_references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Links_shortcut_references.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Links_shortcut_references.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Links_shortcut_references.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Literal_quotes_in_titles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Literal_quotes_in_titles.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Literal_quotes_in_titles.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Literal_quotes_in_titles.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Markdown_Documentation_Basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Markdown_Documentation_Basics.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Markdown_Documentation_Basics.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Markdown_Documentation_Basics.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Markdown_Documentation_Syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Markdown_Documentation_Syntax.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Markdown_Documentation_Syntax.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Markdown_Documentation_Syntax.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Nested_blockquotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Nested_blockquotes.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Nested_blockquotes.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Nested_blockquotes.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Ordered_and_unordered_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Ordered_and_unordered_lists.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Ordered_and_unordered_lists.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Ordered_and_unordered_lists.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/README -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Strong_and_em_together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Strong_and_em_together.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Strong_and_em_together.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Strong_and_em_together.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Tabs.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Tabs.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Tabs.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Tidyness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Tidyness.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Original/Tidyness.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Original/Tidyness.markdown -------------------------------------------------------------------------------- /elm-format-markdown/tests/Tabs/TabConversionUnicode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-markdown/tests/Tabs/TabConversionUnicode.html -------------------------------------------------------------------------------- /elm-format-markdown/tests/Tabs/TabConversionUnicode.markdown: -------------------------------------------------------------------------------- 1 | `То лпой` is a Russian word with a tab inside. 2 | -------------------------------------------------------------------------------- /elm-format-test-lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-test-lib/LICENSE -------------------------------------------------------------------------------- /elm-format-test-lib/elm-format-test-lib.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-test-lib/elm-format-test-lib.cabal -------------------------------------------------------------------------------- /elm-format-test-lib/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-test-lib/package.yaml -------------------------------------------------------------------------------- /elm-format-test-lib/src/CommandLine/TestWorld.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-test-lib/src/CommandLine/TestWorld.hs -------------------------------------------------------------------------------- /elm-format-test-lib/src/Data/FileTree.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-test-lib/src/Data/FileTree.hs -------------------------------------------------------------------------------- /elm-format-test-lib/src/Expect.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-test-lib/src/Expect.hs -------------------------------------------------------------------------------- /elm-format-test-lib/src/TestWorld/Stdio.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-test-lib/src/TestWorld/Stdio.hs -------------------------------------------------------------------------------- /elm-format-test-lib/test/Data/FileTreeTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format-test-lib/test/Data/FileTreeTest.hs -------------------------------------------------------------------------------- /elm-format-test-lib/test/Tests.hs: -------------------------------------------------------------------------------- 1 | {-# OPTIONS_GHC -F -pgmF tasty-discover #-} 2 | -------------------------------------------------------------------------------- /elm-format.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/elm-format.cabal -------------------------------------------------------------------------------- /hie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/hie.yaml -------------------------------------------------------------------------------- /keys/github-actions.pub: -------------------------------------------------------------------------------- 1 | untrusted comment: minisign public key AD7B120324D7931C 2 | RWQck9ckAxJ7rR33f9wfM1h4lDzf9etWvDW7jBZUNUhIJ/PPoSN2K1Q9 3 | -------------------------------------------------------------------------------- /nix/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/nix/sources.json -------------------------------------------------------------------------------- /nix/sources.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/nix/sources.nix -------------------------------------------------------------------------------- /nix/tools.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/nix/tools.nix -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package.yaml -------------------------------------------------------------------------------- /package/elm-tooling/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-tooling/ 2 | -------------------------------------------------------------------------------- /package/elm-tooling/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/elm-tooling/build.sh -------------------------------------------------------------------------------- /package/elm-tooling/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/elm-tooling/generate.sh -------------------------------------------------------------------------------- /package/linux/archlinux/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/linux/archlinux/.gitignore -------------------------------------------------------------------------------- /package/linux/archlinux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/linux/archlinux/README.md -------------------------------------------------------------------------------- /package/linux/archlinux/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/linux/archlinux/Vagrantfile -------------------------------------------------------------------------------- /package/linux/build-in-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/linux/build-in-docker.sh -------------------------------------------------------------------------------- /package/linux/build-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/linux/build-package.sh -------------------------------------------------------------------------------- /package/mac/build-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/mac/build-package.sh -------------------------------------------------------------------------------- /package/nix/.gitignore: -------------------------------------------------------------------------------- 1 | /nixpkgs 2 | -------------------------------------------------------------------------------- /package/nix/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/nix/build.sh -------------------------------------------------------------------------------- /package/nix/generate_derivation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/nix/generate_derivation.sh -------------------------------------------------------------------------------- /package/npm/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/.eslintrc.json -------------------------------------------------------------------------------- /package/npm/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /result 3 | -------------------------------------------------------------------------------- /package/npm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/README.md -------------------------------------------------------------------------------- /package/npm/base-package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/base-package.nix -------------------------------------------------------------------------------- /package/npm/bin/elm-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/bin/elm-format -------------------------------------------------------------------------------- /package/npm/binary-package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/binary-package.nix -------------------------------------------------------------------------------- /package/npm/binary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/binary.js -------------------------------------------------------------------------------- /package/npm/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/default.nix -------------------------------------------------------------------------------- /package/npm/elm-format-0.8.5-test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/elm-format-0.8.5-test.nix -------------------------------------------------------------------------------- /package/npm/elm-format-0.8.6-rc.1.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/elm-format-0.8.6-rc.1.nix -------------------------------------------------------------------------------- /package/npm/elm-format-0.8.6-windows.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/elm-format-0.8.6-windows.nix -------------------------------------------------------------------------------- /package/npm/elm-format-0.8.6.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/elm-format-0.8.6.nix -------------------------------------------------------------------------------- /package/npm/elm-format-0.8.7-rc.1.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/elm-format-0.8.7-rc.1.nix -------------------------------------------------------------------------------- /package/npm/elm-format-0.8.7.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/elm-format-0.8.7.nix -------------------------------------------------------------------------------- /package/npm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/index.js -------------------------------------------------------------------------------- /package/npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/package.json -------------------------------------------------------------------------------- /package/npm/platform-info.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/platform-info.nix -------------------------------------------------------------------------------- /package/npm/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/shell.nix -------------------------------------------------------------------------------- /package/npm/workspace.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/npm/workspace.nix -------------------------------------------------------------------------------- /package/win/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/win/.gitignore -------------------------------------------------------------------------------- /package/win/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/win/Vagrantfile -------------------------------------------------------------------------------- /package/win/build-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/win/build-package.sh -------------------------------------------------------------------------------- /package/win/links.txt: -------------------------------------------------------------------------------- 1 | http://digitaldrummerj.me//vagrant-installing-your-software/ 2 | -------------------------------------------------------------------------------- /package/win/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/win/setup.md -------------------------------------------------------------------------------- /package/win/shell/InstallChocolatey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/win/shell/InstallChocolatey.ps1 -------------------------------------------------------------------------------- /package/win/shell/InstallPackages.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/win/shell/InstallPackages.bat -------------------------------------------------------------------------------- /package/win/shell/main.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/win/shell/main.cmd -------------------------------------------------------------------------------- /package/win/wine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/package/win/wine.sh -------------------------------------------------------------------------------- /parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/LICENSE -------------------------------------------------------------------------------- /parser/bench/CompilerBenchmarks.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/CompilerBenchmarks.elm -------------------------------------------------------------------------------- /parser/bench/elm-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/elm-package.json -------------------------------------------------------------------------------- /parser/bench/src/AnimateBench.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/src/AnimateBench.elm -------------------------------------------------------------------------------- /parser/bench/src/ArrayBench.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/src/ArrayBench.elm -------------------------------------------------------------------------------- /parser/bench/src/Benchmark.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/src/Benchmark.elm -------------------------------------------------------------------------------- /parser/bench/src/CtorBench.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/src/CtorBench.elm -------------------------------------------------------------------------------- /parser/bench/src/DictBench.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/src/DictBench.elm -------------------------------------------------------------------------------- /parser/bench/src/IfBench.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/src/IfBench.elm -------------------------------------------------------------------------------- /parser/bench/src/LargeDictionary.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/src/LargeDictionary.elm -------------------------------------------------------------------------------- /parser/bench/src/ListBench.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/src/ListBench.elm -------------------------------------------------------------------------------- /parser/bench/src/Native/Benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/src/Native/Benchmark.js -------------------------------------------------------------------------------- /parser/bench/src/Native/BenchmarkJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/src/Native/BenchmarkJS.js -------------------------------------------------------------------------------- /parser/bench/src/PatternMatchBench.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/src/PatternMatchBench.elm -------------------------------------------------------------------------------- /parser/bench/src/RecordBench.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/src/RecordBench.elm -------------------------------------------------------------------------------- /parser/bench/src/SmallCtorBench.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/src/SmallCtorBench.elm -------------------------------------------------------------------------------- /parser/bench/src/SmallRecordBench.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/src/SmallRecordBench.elm -------------------------------------------------------------------------------- /parser/bench/src/SmallTupleBench.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/src/SmallTupleBench.elm -------------------------------------------------------------------------------- /parser/bench/src/TodoBench.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/src/TodoBench.elm -------------------------------------------------------------------------------- /parser/bench/src/TupleBench.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/bench/src/TupleBench.elm -------------------------------------------------------------------------------- /parser/tests/test-files/bad/BBTArgs: -------------------------------------------------------------------------------- 1 | Fail -------------------------------------------------------------------------------- /parser/tests/test-files/bad/IncompletePatternMatch.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/tests/test-files/bad/IncompletePatternMatch.elm -------------------------------------------------------------------------------- /parser/tests/test-files/bad/InfiniteType.elm: -------------------------------------------------------------------------------- 1 | 2 | f = f 42 -------------------------------------------------------------------------------- /parser/tests/test-files/bad/NonElementMain.elm: -------------------------------------------------------------------------------- 1 | 2 | main = 42 -------------------------------------------------------------------------------- /parser/tests/test-files/bad/Strings/ExtraClose.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/tests/test-files/bad/Strings/ExtraClose.elm -------------------------------------------------------------------------------- /parser/tests/test-files/good/AliasSubstitution.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/tests/test-files/good/AliasSubstitution.elm -------------------------------------------------------------------------------- /parser/tests/test-files/good/CaseExpression3.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/tests/test-files/good/CaseExpression3.elm -------------------------------------------------------------------------------- /parser/tests/test-files/good/Lists/EmptyList.elm: -------------------------------------------------------------------------------- 1 | 2 | emptyList = [] -------------------------------------------------------------------------------- /parser/tests/test-files/good/Lists/ListRange.elm: -------------------------------------------------------------------------------- 1 | 2 | listRange = [2..10] -------------------------------------------------------------------------------- /parser/tests/test-files/good/Lists/NonEmptyList.elm: -------------------------------------------------------------------------------- 1 | 2 | nonEmptyList = [1,4,5] -------------------------------------------------------------------------------- /parser/tests/test-files/good/NoExpressions.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/tests/test-files/good/NoExpressions.elm -------------------------------------------------------------------------------- /parser/tests/test-files/good/Otherwise.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/tests/test-files/good/Otherwise.elm -------------------------------------------------------------------------------- /parser/tests/test-files/good/Ports.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/tests/test-files/good/Ports.elm -------------------------------------------------------------------------------- /parser/tests/test-files/good/PortsWithTypeAliases.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/tests/test-files/good/PortsWithTypeAliases.elm -------------------------------------------------------------------------------- /parser/tests/test-files/good/QuotesAndComments.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/tests/test-files/good/QuotesAndComments.elm -------------------------------------------------------------------------------- /parser/tests/test-files/good/Soundness/Apply.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/tests/test-files/good/Soundness/Apply.elm -------------------------------------------------------------------------------- /parser/tests/test-files/good/Soundness/ApplyAnnotated.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/tests/test-files/good/Soundness/ApplyAnnotated.elm -------------------------------------------------------------------------------- /parser/tests/test-files/good/Soundness/Id.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/tests/test-files/good/Soundness/Id.elm -------------------------------------------------------------------------------- /parser/tests/test-files/good/Soundness/IdAnnotated.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/tests/test-files/good/Soundness/IdAnnotated.elm -------------------------------------------------------------------------------- /parser/tests/test-files/good/Soundness/TrickyId.elm: -------------------------------------------------------------------------------- 1 | 2 | myId x = let y = x in y -------------------------------------------------------------------------------- /parser/tests/test-files/good/Soundness/TrickyIdAnnotated.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/tests/test-files/good/Soundness/TrickyIdAnnotated.elm -------------------------------------------------------------------------------- /parser/tests/test-files/good/Strings/Multiline.elm: -------------------------------------------------------------------------------- 1 | s = """ 2 | here's a quote: " 3 | 4 | """ 5 | -------------------------------------------------------------------------------- /parser/tests/test-files/good/Strings/MultilineNormal.elm: -------------------------------------------------------------------------------- 1 | 2 | s = " 3 | here's a quote: \" 4 | 5 | " 6 | -------------------------------------------------------------------------------- /parser/tests/test-files/good/TailRecursive.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/tests/test-files/good/TailRecursive.elm -------------------------------------------------------------------------------- /parser/tests/test-files/good/Unify/NonHomogeneousRecords.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/parser/tests/test-files/good/Unify/NonHomogeneousRecords.elm -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/shell.nix -------------------------------------------------------------------------------- /src/ElmFormat/Cli.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/src/ElmFormat/Cli.hs -------------------------------------------------------------------------------- /src/ElmFormat/CliFlags.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/src/ElmFormat/CliFlags.hs -------------------------------------------------------------------------------- /src/ElmFormat/Messages.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/src/ElmFormat/Messages.hs -------------------------------------------------------------------------------- /src/ElmFormat/Version.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/src/ElmFormat/Version.hs -------------------------------------------------------------------------------- /src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/src/Main.hs -------------------------------------------------------------------------------- /tests/CommonMarkTests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/CommonMarkTests.hs -------------------------------------------------------------------------------- /tests/Integration/CliTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/Integration/CliTest.hs -------------------------------------------------------------------------------- /tests/Integration/LiteralTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/Integration/LiteralTest.hs -------------------------------------------------------------------------------- /tests/Integration/data/minimal.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/Integration/data/minimal.elm -------------------------------------------------------------------------------- /tests/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/Test.hs -------------------------------------------------------------------------------- /tests/Test/ElmSourceGenerators.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/Test/ElmSourceGenerators.hs -------------------------------------------------------------------------------- /tests/Test/Generators.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/Test/Generators.hs -------------------------------------------------------------------------------- /tests/Test/Property.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/Test/Property.hs -------------------------------------------------------------------------------- /tests/json-format-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/json-format-schema.json -------------------------------------------------------------------------------- /tests/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/run-tests.sh -------------------------------------------------------------------------------- /tests/stdin-error.stderr/golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/stdin-error.stderr/golden -------------------------------------------------------------------------------- /tests/test-files/CommonMark/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/.editorconfig -------------------------------------------------------------------------------- /tests/test-files/CommonMark/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.bak 3 | spec.html -------------------------------------------------------------------------------- /tests/test-files/CommonMark/CommonMark.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/CommonMark.dtd -------------------------------------------------------------------------------- /tests/test-files/CommonMark/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/LICENSE -------------------------------------------------------------------------------- /tests/test-files/CommonMark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/Makefile -------------------------------------------------------------------------------- /tests/test-files/CommonMark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/README.md -------------------------------------------------------------------------------- /tests/test-files/CommonMark/RELEASE_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/RELEASE_CHECKLIST.md -------------------------------------------------------------------------------- /tests/test-files/CommonMark/alternative-html-blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/alternative-html-blocks.txt -------------------------------------------------------------------------------- /tests/test-files/CommonMark/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/changelog.txt -------------------------------------------------------------------------------- /tests/test-files/CommonMark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/index.js -------------------------------------------------------------------------------- /tests/test-files/CommonMark/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/package.json -------------------------------------------------------------------------------- /tests/test-files/CommonMark/spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/spec.txt -------------------------------------------------------------------------------- /tests/test-files/CommonMark/test/cmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/test/cmark.py -------------------------------------------------------------------------------- /tests/test-files/CommonMark/test/normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/test/normalize.py -------------------------------------------------------------------------------- /tests/test-files/CommonMark/test/spec_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/test/spec_tests.py -------------------------------------------------------------------------------- /tests/test-files/CommonMark/tools/make_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/tools/make_spec.lua -------------------------------------------------------------------------------- /tests/test-files/CommonMark/tools/spec2js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/tools/spec2js.js -------------------------------------------------------------------------------- /tests/test-files/CommonMark/tools/template.commonmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/tools/template.commonmark -------------------------------------------------------------------------------- /tests/test-files/CommonMark/tools/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/tools/template.html -------------------------------------------------------------------------------- /tests/test-files/CommonMark/tools/template.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/CommonMark/tools/template.latex -------------------------------------------------------------------------------- /tests/test-files/bad/Elm-0.19/UnexpectedComma.elm: -------------------------------------------------------------------------------- 1 | module UnexpectedComma (..) where 2 | 3 | 4 | abc,def = 5 | "Hello World!" 6 | -------------------------------------------------------------------------------- /tests/test-files/bad/Elm-0.19/UnexpectedComma.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/bad/Elm-0.19/UnexpectedComma.output.txt -------------------------------------------------------------------------------- /tests/test-files/bad/Elm-0.19/UnexpectedEndOfInput.elm: -------------------------------------------------------------------------------- 1 | module UnexpectedEndOfInput (..) where 2 | 3 | abcdef = 4 | """ 5 | -------------------------------------------------------------------------------- /tests/test-files/bad/Elm-0.19/UnexpectedEndOfInput.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/bad/Elm-0.19/UnexpectedEndOfInput.output.txt -------------------------------------------------------------------------------- /tests/test-files/directory/invalid.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/directory/invalid.elm -------------------------------------------------------------------------------- /tests/test-files/directory/valid.elm: -------------------------------------------------------------------------------- 1 | module X exposing (a) 2 | 3 | 4 | a = 5 | 123 6 | -------------------------------------------------------------------------------- /tests/test-files/from-json/Elm-0.19/Declarations.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/from-json/Elm-0.19/Declarations.elm -------------------------------------------------------------------------------- /tests/test-files/from-json/Elm-0.19/Declarations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/from-json/Elm-0.19/Declarations.json -------------------------------------------------------------------------------- /tests/test-files/from-json/Elm-0.19/Expressions.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/from-json/Elm-0.19/Expressions.elm -------------------------------------------------------------------------------- /tests/test-files/from-json/Elm-0.19/Expressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/from-json/Elm-0.19/Expressions.json -------------------------------------------------------------------------------- /tests/test-files/from-json/Elm-0.19/ModuleComments.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/from-json/Elm-0.19/ModuleComments.elm -------------------------------------------------------------------------------- /tests/test-files/from-json/Elm-0.19/ModuleComments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/from-json/Elm-0.19/ModuleComments.json -------------------------------------------------------------------------------- /tests/test-files/from-json/Elm-0.19/ModuleImports.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/from-json/Elm-0.19/ModuleImports.elm -------------------------------------------------------------------------------- /tests/test-files/from-json/Elm-0.19/ModuleImports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/from-json/Elm-0.19/ModuleImports.json -------------------------------------------------------------------------------- /tests/test-files/from-json/Elm-0.19/Patterns.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/from-json/Elm-0.19/Patterns.elm -------------------------------------------------------------------------------- /tests/test-files/from-json/Elm-0.19/Patterns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/from-json/Elm-0.19/Patterns.json -------------------------------------------------------------------------------- /tests/test-files/from-json/Elm-0.19/Simple.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/from-json/Elm-0.19/Simple.elm -------------------------------------------------------------------------------- /tests/test-files/from-json/Elm-0.19/Simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/from-json/Elm-0.19/Simple.json -------------------------------------------------------------------------------- /tests/test-files/from-json/Elm-0.19/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/from-json/Elm-0.19/Types.elm -------------------------------------------------------------------------------- /tests/test-files/from-json/Elm-0.19/Types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/from-json/Elm-0.19/Types.json -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.16/AllSyntax/PatternsRequireParens.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.16/AllSyntax/PatternsRequireParens.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/AllSyntax.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/AllSyntax.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/AllSyntax/BlockComments/Module.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/AllSyntax/BlockComments/Module.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/AllSyntax/BlockComments/ModuleEffect.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/AllSyntax/BlockComments/ModuleEffect.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/AllSyntax/InfixOperators.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/AllSyntax/InfixOperators.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/AllSyntax/LineComments/Module.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/AllSyntax/LineComments/Module.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/AllSyntax/LineComments/ModuleEffect.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/AllSyntax/LineComments/ModuleEffect.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/AllSyntax/Module.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/AllSyntax/Module.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/AllSyntax/ModuleEffect.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/AllSyntax/ModuleEffect.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/AllSyntax/OldKeywords.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/AllSyntax/OldKeywords.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/AllSyntax/Range.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/AllSyntax/Range.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/Export.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/Export.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/TopLevelSpacing.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/TopLevelSpacing.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/WorkaroundNegativeCasePatterns.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/WorkaroundNegativeCasePatterns.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/elm-lang/examples/Spelling.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/elm-lang/examples/Spelling.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/elm-lang/examples/http.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/elm-lang/examples/http.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/elm-lang/examples/random.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/elm-lang/examples/random.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/elm-lang/examples/time.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/elm-lang/examples/time.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/elm-lang/examples/websockets.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/elm-lang/examples/websockets.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.17/elm-lang/websocket/WebSocket.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.17/elm-lang/websocket/WebSocket.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/AllSyntax.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/AllSyntax.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/BlockComments/Module.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/BlockComments/Module.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/BlockComments/Patterns.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/BlockComments/Patterns.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/BlockComments/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/BlockComments/Types.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/Comments.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/Comments.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/DeclaraionSpacing.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/DeclaraionSpacing.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/Declarations.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/Declarations.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/DocComments.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/DocComments.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/DocCommentsStartingWtihAtDocs.elm: -------------------------------------------------------------------------------- 1 | module Main exposing (x) 2 | 3 | {-| 4 | 5 | @docs x 6 | 7 | -} 8 | 9 | 10 | x = 11 | () 12 | -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/Expressions.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/Expressions.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/Expressions/BinaryOperators.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/Expressions/BinaryOperators.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/Expressions/Unary.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/Expressions/Unary.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/GLShader.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/GLShader.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/LineComments/Module.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/LineComments/Module.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/LineComments/Patterns.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/LineComments/Patterns.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/LineComments/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/LineComments/Types.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/Literals.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/Literals.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/Module.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/Module.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/ModuleMultiline.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/ModuleMultiline.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/ModuleWithDocs.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/ModuleWithDocs.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/OldKeywords.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/OldKeywords.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/Patterns.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/Patterns.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/AllSyntax/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/AllSyntax/Types.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/ApiSketch.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/ApiSketch.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/Comments.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/Comments.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/Export.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/Export.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/Simple.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/Simple.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/TheSeamau5/elm-check/Check.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/TheSeamau5/elm-check/Check.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/TopLevelSpacing.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/TopLevelSpacing.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/TrueFalseInIdentifiers.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/TrueFalseInIdentifiers.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/WorkaroundNegativeCasePatterns.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/WorkaroundNegativeCasePatterns.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/avh4/elm-fifo/Fifo.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/avh4/elm-fifo/Fifo.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/elm/core/Basics.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/elm/core/Basics.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/evancz/start-app/StartApp.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/evancz/start-app/StartApp.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/mdgriffith/style-elements/Element.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/mdgriffith/style-elements/Element.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/rtfeldman/dreamwriter/Editor.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/rtfeldman/dreamwriter/Editor.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/rtfeldman/dreamwriter/LeftSidebar.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/rtfeldman/dreamwriter/LeftSidebar.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/rtfeldman/dreamwriter/RightSidebar.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/rtfeldman/dreamwriter/RightSidebar.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.18/rtfeldman/dreamwriter/WordGraph.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.18/rtfeldman/dreamwriter/WordGraph.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Declarations.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Declarations.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Declarations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Declarations.json -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Declarations.json-roundtrip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Declarations.json-roundtrip -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Expressions.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Expressions.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Expressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Expressions.json -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Expressions.json-roundtrip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Expressions.json-roundtrip -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/InfixDeclaration.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/InfixDeclaration.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Literals.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Literals.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Literals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Literals.json -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Literals.json-roundtrip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Literals.json-roundtrip -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Module.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Module.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Module.json -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Module.json-roundtrip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Module.json-roundtrip -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Patterns.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Patterns.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Patterns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Patterns.json -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Patterns.json-roundtrip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Patterns.json-roundtrip -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Types.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Types.json -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/AllSyntax/Types.json-roundtrip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/AllSyntax/Types.json-roundtrip -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/GLShader.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/GLShader.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/GLShader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/GLShader.json -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/GLShader.json-roundtrip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/GLShader.json-roundtrip -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/InfixAsVariableName.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/InfixAsVariableName.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/TopLevelSpacing.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/TopLevelSpacing.elm -------------------------------------------------------------------------------- /tests/test-files/good/Elm-0.19/WorkaroundNegativeCasePatterns.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/Elm-0.19/WorkaroundNegativeCasePatterns.elm -------------------------------------------------------------------------------- /tests/test-files/good/json/ExternalReferences.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/json/ExternalReferences.elm -------------------------------------------------------------------------------- /tests/test-files/good/json/ExternalReferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/json/ExternalReferences.json -------------------------------------------------------------------------------- /tests/test-files/good/json/ExternalReferences.json-roundtrip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/good/json/ExternalReferences.json-roundtrip -------------------------------------------------------------------------------- /tests/test-files/recursive-directory/nested/invalid.elm: -------------------------------------------------------------------------------- 1 | module X where 2 | 3 | ab,c = 123 + x 4 | -------------------------------------------------------------------------------- /tests/test-files/recursive-directory/valid.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/recursive-directory/valid.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.16/github-avh4-elm-format-184.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.16/github-avh4-elm-format-184.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.16/github-avh4-elm-format-184.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.16/github-avh4-elm-format-184.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/AllSyntax/Patterns.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/AllSyntax/Patterns.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/AllSyntax/Patterns.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/AllSyntax/Patterns.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/AllSyntax/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/AllSyntax/Types.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/AllSyntax/Types.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/AllSyntax/Types.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/DocCommentAtDocs.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/DocCommentAtDocs.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/DocCommentAtDocs.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/DocCommentAtDocs.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/DocCommentCheapskateReferenceBug.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/DocCommentCheapskateReferenceBug.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/DocCommentCheapskateReferenceBug.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/DocCommentCheapskateReferenceBug.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/DocCommentCodeExample.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/DocCommentCodeExample.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/DocCommentCodeExample.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/DocCommentCodeExample.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/DocCommentMarkdownSafety.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/DocCommentMarkdownSafety.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/DocCommentMarkdownSafety.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/DocCommentMarkdownSafety.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/Empty.elm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/Empty.formatted.elm: -------------------------------------------------------------------------------- 1 | module Main exposing (..) 2 | -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/Examples.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/Examples.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/Examples.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/Examples.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/LenientEqualsColon.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/LenientEqualsColon.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/LenientEqualsColon.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/LenientEqualsColon.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/MissingImportParens.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/MissingImportParens.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/MissingImportParens.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/MissingImportParens.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/QuickCheck-4562ebccb71ea9f622fb99cdf32b2923f6f9d34f-2529668492575674138.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/QuickCheck-4562ebccb71ea9f622fb99cdf32b2923f6f9d34f-2529668492575674138.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/QuickCheck-4562ebccb71ea9f622fb99cdf32b2923f6f9d34f-2529668492575674138.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/QuickCheck-4562ebccb71ea9f622fb99cdf32b2923f6f9d34f-2529668492575674138.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/QuickCheck-94f37da84c1310f03dcfa1059ce870b73c94a825--6449652945938213463.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/QuickCheck-94f37da84c1310f03dcfa1059ce870b73c94a825--6449652945938213463.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/QuickCheck-94f37da84c1310f03dcfa1059ce870b73c94a825--6449652945938213463.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/QuickCheck-94f37da84c1310f03dcfa1059ce870b73c94a825--6449652945938213463.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/Sorting.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/Sorting.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/Sorting.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/Sorting.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/TrickyModule1.elm: -------------------------------------------------------------------------------- 1 | modu = () 2 | -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/TrickyModule1.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/TrickyModule1.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/TrickyModule2.elm: -------------------------------------------------------------------------------- 1 | 2 | modulex = () 3 | -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/TrickyModule2.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/TrickyModule2.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/TrickyModule3.elm: -------------------------------------------------------------------------------- 1 | portModule = () 2 | -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/TrickyModule3.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/TrickyModule3.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/TrickyModule4.elm: -------------------------------------------------------------------------------- 1 | effect mod = () 2 | -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/TrickyModule4.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/TrickyModule4.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/UnnecessaryParens.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/UnnecessaryParens.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/UnnecessaryParens.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/UnnecessaryParens.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/WindowsEol.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/WindowsEol.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.18/WindowsEol.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.18/WindowsEol.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/AddMissingExposingForImport.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/AddMissingExposingForImport.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/AddMissingExposingForImport.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/AddMissingExposingForImport.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/AddMissingExposingForModule.elm: -------------------------------------------------------------------------------- 1 | module Foo {- A -} (Bar) 2 | 3 | type alias Bar = String 4 | -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/AddMissingExposingForModule.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/AddMissingExposingForModule.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/ClarifyNegativeExponentiationPrecedence.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/ClarifyNegativeExponentiationPrecedence.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/ClarifyNegativeExponentiationPrecedence.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/ClarifyNegativeExponentiationPrecedence.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/DistinguishCharStartFromRef.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/DistinguishCharStartFromRef.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/DistinguishCharStartFromRef.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/DistinguishCharStartFromRef.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/ExplicitlyListExposedValues.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/ExplicitlyListExposedValues.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/ExplicitlyListExposedValues.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/ExplicitlyListExposedValues.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/ListAllExportsNoExposing.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/ListAllExportsNoExposing.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/ListAllExportsNoExposing.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/ListAllExportsNoExposing.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/ListAllExportsNoModuleLine.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/ListAllExportsNoModuleLine.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/ListAllExportsNoModuleLine.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/ListAllExportsNoModuleLine.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/ListDocumentedExportsNoExposing.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/ListDocumentedExportsNoExposing.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/ListDocumentedExportsNoExposing.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/ListDocumentedExportsNoExposing.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/ParseTabsInLiterals.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/ParseTabsInLiterals.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/ParseTabsInLiterals.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/ParseTabsInLiterals.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/ReplaceThenByOfInCase.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/ReplaceThenByOfInCase.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/ReplaceThenByOfInCase.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/ReplaceThenByOfInCase.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/TransformFatArrow.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/TransformFatArrow.elm -------------------------------------------------------------------------------- /tests/test-files/transform/Elm-0.19/TransformFatArrow.formatted.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/transform/Elm-0.19/TransformFatArrow.formatted.elm -------------------------------------------------------------------------------- /tests/test-files/validate1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/test-files/validate1.json -------------------------------------------------------------------------------- /tests/test-files/validate2.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests/usage.stdout/golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avh4/elm-format/HEAD/tests/usage.stdout/golden --------------------------------------------------------------------------------