Skip to content
This repository has been archived by the owner on Dec 6, 2022. It is now read-only.

Commit

Permalink
Create .configeditor to standardization of editors
Browse files Browse the repository at this point in the history
The EditorConfig helps set and maintain consistent styles of code among several editors. It is a simple file that stores the settings of coding style, your favorite editor reads these settings and understands exactly what setting to use for each file format.

More info: http://editorconfig.org
  • Loading branch information
Jefersson Nathan committed Feb 16, 2014
1 parent 23b9c4a commit 3e1dfab
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
@@ -0,0 +1,13 @@
root = true

[*]
end_of_line = lf
insert_final_newline = false

[*.php]
indent_style = space
indent_size = 4

[*.yaml]
indent_style = space
indent_size = 2

0 comments on commit 3e1dfab

Please sign in to comment.