mirror of
https://github.com/haskell/haskell-language-server.git
synced 2024-11-10 15:14:48 +03:00
328391a294
The most important setting is to trim trailing whitespace, and use spaces not tabs on the file system. The rest can be argued. Indent size is taken from a (tiny) sammple of the existing ghcide code base.
15 lines
281 B
INI
15 lines
281 B
INI
; This file is for unifying the coding style for different editors and IDEs.
|
|
; More information at http://EditorConfig.org
|
|
|
|
root = true
|
|
|
|
[*]
|
|
end_of_line = LF
|
|
|
|
[*]
|
|
indent_style = space
|
|
indent_size = 4
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
max_line_length = 80
|