-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add editor config and reformat js and style files
For better readability and easier further refactoring Signed-off-by: Anton Fedurtsya <[email protected]>
- Loading branch information
Showing
13 changed files
with
751 additions
and
1,125 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,17 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 4 | ||
trim_trailing_whitespace = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[{*.yml,*.yaml,*.json}] | ||
indent_size = 2 |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
"asi" : true, | ||
"browser" : true, | ||
"eqeqeq" : false, | ||
"eqnull" : true, | ||
"es3" : true, | ||
"expr" : true, | ||
"jquery" : true, | ||
"latedef" : true, | ||
"laxbreak" : true, | ||
"nonbsp" : true, | ||
"strict" : true, | ||
"unused" : true | ||
} | ||
"asi": true, | ||
"browser": true, | ||
"eqeqeq": false, | ||
"eqnull": true, | ||
"es3": true, | ||
"expr": true, | ||
"jquery": true, | ||
"latedef": true, | ||
"laxbreak": true, | ||
"nonbsp": true, | ||
"strict": true, | ||
"unused": true | ||
} |
Oops, something went wrong.