Skip to content

Commit

Permalink
124 - add .editorconfig file and document its usage
Browse files Browse the repository at this point in the history
  • Loading branch information
freeman42x committed May 27, 2020
1 parent 00b39de commit e7e5a71
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = false

[*.hs]
indent_style = space
indent_size = 2
2 changes: 1 addition & 1 deletion src/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,4 @@ installAtomPackage package = do
case exitCode of
ExitSuccess -> return ()
ExitFailure n -> die ("apm install failed with exit code: " <> repr n)
putStrLnGreen $ "Finished installing " <> package
putStrLnGreen $ "Finished installing " <> package

0 comments on commit e7e5a71

Please sign in to comment.