Created
February 20, 2019 10:08
-
-
Save mrpharderwijk/b22ae167f6a1b97165512d6fe0a35577 to your computer and use it in GitHub Desktop.
Default project files
This file contains hidden or 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
| # Editor configuration, see http://editorconfig.org | |
| root = true | |
| [*] | |
| charset = utf-8 | |
| indent_style = space | |
| indent_size = 2 | |
| insert_final_newline = true | |
| trim_trailing_whitespace = true | |
| [*.md] | |
| max_line_length = off | |
| trim_trailing_whitespace = false |
This file contains hidden or 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
| # See http://help.github.com/ignore-files/ for more about ignoring files. | |
| # compiled output | |
| /dist | |
| /tmp | |
| /out-tsc | |
| # dependencies | |
| /node_modules | |
| # IDEs and editors | |
| /.idea | |
| .project | |
| .classpath | |
| .c9/ | |
| *.launch | |
| .settings/ | |
| *.sublime-workspace | |
| # IDE - VSCode | |
| .vscode/* | |
| !.vscode/settings.json | |
| !.vscode/tasks.json | |
| !.vscode/launch.json | |
| !.vscode/extensions.json | |
| # misc | |
| /.sass-cache | |
| /connect.lock | |
| /coverage | |
| /libpeerconnection.log | |
| npm-debug.log | |
| yarn-error.log | |
| testem.log | |
| /typings | |
| # System Files | |
| .DS_Store | |
| Thumbs.db |
This file contains hidden or 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
| *.html | |
| *.md |
This file contains hidden or 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
| { | |
| "semi": true, | |
| "printWidth": 120, | |
| "useTabs": false, | |
| "tabWidth": 2, | |
| "singleQuote": true, | |
| "trailingComma": "all", | |
| "bracketSpacing": true, | |
| "arrowParens": "avoid", | |
| "parser": "typescript" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment