forked from pixelant/pxa_lpeh
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
565e466
commit 89b245a
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# This file is for unifying the coding style for different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
# Get rid of whitespace to avoid diffs with a bunch of EOL changes | ||
trim_trailing_whitespace = true | ||
# Unix-style newlines with a newline ending every file | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# TypeScript/JavaScript/JSON files | ||
[*.{ts,js,json}] | ||
indent_size = 2 | ||
|
||
# TypoScript/TSconfig files | ||
[*.{typoscript,tsconfig}] | ||
indent_size = 2 | ||
|
||
# XLF/XML files | ||
[*.{xlf,xml}] | ||
indent_style = tab | ||
|
||
# YAML-Files | ||
[*.{yaml,yml}] | ||
indent_size = 2 | ||
|
||
# ReST-Files | ||
[*.rst] | ||
indent_size = 3 | ||
|
||
# SQL files | ||
[*.sql] | ||
indent_style = tab | ||
indent_size = 2 | ||
|
||
# .htaccess | ||
[{_.htaccess,.htaccess}] | ||
indent_style = tab | ||
|
||
# HTML files | ||
[*.html] | ||
indent_size = 2 | ||
|
||
# CSS/SCSS files | ||
[*.{css,scss}] | ||
indent_size = 2 |