posts-go/docs/2022-08-10-gitignore.html

124 lines
3.3 KiB
HTML
Raw Permalink Normal View History

2023-07-18 18:38:30 +00:00
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/5.5.1/github-markdown.min.css"
/>
<title>haunt98 posts</title>
</head>
<style>
.markdown-body {
box-sizing: border-box;
min-width: 200px;
max-width: 980px;
margin: 0 auto;
padding: 45px;
2024-03-01 10:11:20 +00:00
font-family:
Shantell Sans Normal,
Rec Mono Casual,
SF Pro,
Inter,
sans-serif;
font-weight: 500;
}
.markdown-body pre {
font-family:
Berkeley Mono,
IBM Plex Mono,
SF Mono,
Jetbrains Mono,
monospace;
}
@media (max-width: 767px) {
.markdown-body {
padding: 15px;
}
}
</style>
<body class="markdown-body">
2023-08-09 07:22:58 +00:00
<h2>
<a href="index.html"><code>~</code></a>
</h2>
2024-02-29 12:29:26 +00:00
<div class="markdown-heading">
<h1 class="heading-element">gitignore</h1>
2023-11-19 15:59:21 +00:00
<a
id="user-content-gitignore"
2024-03-08 08:12:41 +00:00
class="anchor"
2024-02-29 12:29:26 +00:00
aria-label="Permalink: gitignore"
2023-11-19 15:59:21 +00:00
href="#gitignore"
2024-02-29 12:29:26 +00:00
><span aria-hidden="true" class="octicon octicon-link"></span
></a>
</div>
2022-12-30 09:26:06 +00:00
<p>My quick check for <code>.gitignore</code>.</p>
2024-02-29 12:29:26 +00:00
<div class="markdown-heading">
<h2 class="heading-element">Base</h2>
2023-11-19 15:59:21 +00:00
<a
id="user-content-base"
2024-03-08 08:12:41 +00:00
class="anchor"
2024-02-29 12:29:26 +00:00
aria-label="Permalink: Base"
2023-11-19 15:59:21 +00:00
href="#base"
2024-02-29 12:29:26 +00:00
><span aria-hidden="true" class="octicon octicon-link"></span
></a>
</div>
2022-12-30 09:26:06 +00:00
<div class="highlight highlight-text-adblock">
<pre><span class="pl-c"># macOS</span>
2022-08-10 11:03:13 +00:00
.DS_Store
<span class="pl-c"># Windows</span>
<span class="pl-k">*</span>.exe
2022-08-10 11:03:13 +00:00
<span class="pl-c"># IntelliJ</span>
2022-08-10 11:03:13 +00:00
.idea/
<span class="pl-c"># VSCode</span>
2022-12-30 09:26:06 +00:00
.vscode/</pre>
</div>
2024-02-29 12:29:26 +00:00
<div class="markdown-heading">
<h2 class="heading-element">Go</h2>
2023-11-19 15:59:21 +00:00
<a
id="user-content-go"
2024-03-08 08:12:41 +00:00
class="anchor"
2024-02-29 12:29:26 +00:00
aria-label="Permalink: Go"
2023-11-19 15:59:21 +00:00
href="#go"
2024-02-29 12:29:26 +00:00
><span aria-hidden="true" class="octicon octicon-link"></span
></a>
</div>
2022-12-30 09:26:06 +00:00
<div class="highlight highlight-text-adblock">
<pre><span class="pl-c"># Go</span>
<span class="pl-c"># Test coverage</span>
2022-08-10 11:03:13 +00:00
coverage.out
<span class="pl-c"># Should ignore vendor</span>
2022-12-30 09:26:06 +00:00
vendor</pre>
</div>
2024-02-29 12:29:26 +00:00
<div class="markdown-heading">
<h2 class="heading-element">Python</h2>
2023-11-19 15:59:21 +00:00
<a
id="user-content-python"
2024-03-08 08:12:41 +00:00
class="anchor"
2024-02-29 12:29:26 +00:00
aria-label="Permalink: Python"
2023-11-19 15:59:21 +00:00
href="#python"
2024-02-29 12:29:26 +00:00
><span aria-hidden="true" class="octicon octicon-link"></span
></a>
</div>
2022-12-30 09:26:06 +00:00
<div class="highlight highlight-text-adblock"><pre>venv</pre></div>
2022-12-25 19:22:39 +00:00
<div>
Feel free to ask me via
<a href="mailto:hauvipapro+posts@gmail.com">email</a> or
2023-08-20 17:29:13 +00:00
<a rel="me" href="https://hachyderm.io/@haunguyen">Mastodon</a>.
<br />Source code is available on
2022-12-30 09:55:38 +00:00
<a href="https://github.com/haunt98/posts-go">GitHub</a>
2023-08-20 17:29:13 +00:00
<a href="https://codeberg.org/yoshie/posts-go">Codeberg</a>
<a href="https://git.sr.ht/~youngyoshie/posts-go">sourcehut</a>
<a href="https://gitea.treehouse.systems/yoshie/posts-go">Treehouse</a>
<a href="https://gitlab.com/youngyoshie/posts-go">GitLab</a>
2022-12-25 19:22:39 +00:00
</div>
</body>
</html>