Skip to content

Commit e7e5a71

Browse files
committed
124 - add .editorconfig file and document its usage
1 parent 00b39de commit e7e5a71

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# top-most EditorConfig file
2+
root = true
3+
4+
# Unix-style newlines with a newline ending every file
5+
[*]
6+
end_of_line = lf
7+
insert_final_newline = false
8+
9+
[*.hs]
10+
indent_style = space
11+
indent_size = 2

src/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,4 +189,4 @@ installAtomPackage package = do
189189
case exitCode of
190190
ExitSuccess -> return ()
191191
ExitFailure n -> die ("apm install failed with exit code: " <> repr n)
192-
putStrLnGreen $ "Finished installing " <> package
192+
putStrLnGreen $ "Finished installing " <> package

0 commit comments

Comments
 (0)