Created
May 16, 2017 09:57
-
-
Save Eoksni/49cbac2c0a6cfd17b1d93b699098ac8a to your computer and use it in GitHub Desktop.
test case for tsfmt .editorconfig with --baseDir
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
let q = function(name) { | |
console.log("greetings" + name); | |
} |
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
# http://editorconfig.org | |
root = true | |
[*] | |
indent_style = space | |
indent_size = 2 | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true |
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
let q = function(name) { | |
console.log("greetings" + name); | |
} |
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
{ | |
"insertSpaceAfterFunctionKeywordForAnonymousFunctions": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment