A tool for publishing static site markdown to the ATmosphere
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Setting up basic repo files

+77
+55
.editorconfig
··· 1 + # EditorConfig is awesome: https://EditorConfig.org 2 + 3 + # top-most EditorConfig file 4 + root = true 5 + 6 + # Unix-style newlines with a newline ending every file 7 + [*] 8 + end_of_line = lf 9 + insert_final_newline = true 10 + indent_size = 4 11 + 12 + # Matches multiple files with brace expansion notation 13 + # Set default charset 14 + [*.{js,py}] 15 + charset = utf-8 16 + 17 + # 4 space indentation 18 + [*.py] 19 + indent_style = space 20 + indent_size = 4 21 + 22 + # Tab indentation (no size specified) 23 + [Makefile] 24 + indent_style = tab 25 + 26 + # Indentation override for all JS 27 + [**.{js,njk}] 28 + indent_style = space 29 + indent_size = 2 30 + quote_type = single 31 + max_line_length = "80" 32 + 33 + # Indentation override for all TS 34 + [**.{ts,tsx}] 35 + indent_style = tab 36 + indent_size = 4 37 + quote_type = single 38 + max_line_length = "80" 39 + 40 + [*.{yaml,yml}] 41 + indent_style = space 42 + indent_size = 2 43 + 44 + [*.md] 45 + indent_style = space 46 + indent_size = 4 47 + 48 + # Matches the exact files either package.json or .travis.yml 49 + [{package.json,.travis.yml}] 50 + indent_style = space 51 + indent_size = 2 52 + 53 + [*.{sass,css}] 54 + indent_style = space 55 + indent_size = 2
+22
.gitignore
··· 1 + _site/ 2 + dist/ 3 + _tmp/ 4 + .DS_Store 5 + node_modules/ 6 + .idea 7 + .cache 8 + build 9 + .env 10 + docs 11 + .DS_Store 12 + **/.DS_Store 13 + build_log.txt 14 + buildlog.txt 15 + big-buildlog.txt 16 + gh-pages 17 + gh-pages.pub 18 + testLast.html 19 + .env-json.json 20 + 21 + # Local Netlify folder 22 + .netlify