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
| # Add files here to ignore them from prettier formatting | |
| /dist | |
| /coverage | |
| .angular |
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
| { | |
| "arrowParens": "always", | |
| "bracketSpacing": true, | |
| "endOfLine": "lf", | |
| "htmlWhitespaceSensitivity": "css", | |
| "jsxBracketSameLine": true, | |
| "jsxSingleQuote": true, | |
| "quoteProps": "as-needed", | |
| "printWidth": 100, | |
| "proseWrap": "preserve", |
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 | |
| end_of_line = lf | |
| indent_size = 2 | |
| indent_style = space | |
| insert_final_newline = true | |
| quote_type = single |
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
| fund=false | |
| package-lock=false | |
| save=true | |
| save-exact=true | |
| @bjanderson:registry=https://npm.pkg.github.com |
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
| import os | |
| import sys | |
| import urllib.request | |
| """ | |
| Put this file in the folder that you want to create a new project in and run it with 'python new-python-project.py <project-name>' | |
| """ | |
| def create_file(text, filename): | |
| try: |
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
| ISC License | |
| Copyright <YEAR> <OWNER> | |
| Permission to use, copy, modify, and/or distribute this software for any | |
| purpose with or without fee is hereby granted, provided that the above | |
| copyright notice and this permission notice appear in all copies. | |
| THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | |
| REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
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
| #!/bin/bash | |
| # Author: Bartley Anderson (http://bjspage.com) | |
| # License: MIT | |
| # Github: https://gist.github.com/bjanderson/e8609cd036dc8f1635982442e3f0132c | |
| # Based on the instructions from: https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/ | |
| ACTION='install' | |
| OS='ubuntu16' | |
| PIN=0 |