<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.zelda.sr/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Peri</id>
	<title>jabara Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.zelda.sr/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Peri"/>
	<link rel="alternate" type="text/html" href="https://wiki.zelda.sr/wiki/Special:Contributions/Peri"/>
	<updated>2026-05-23T00:15:01Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://wiki.zelda.sr/index.php?title=Contribution_guidelines&amp;diff=24</id>
		<title>Contribution guidelines</title>
		<link rel="alternate" type="text/html" href="https://wiki.zelda.sr/index.php?title=Contribution_guidelines&amp;diff=24"/>
		<updated>2026-04-03T00:07:37Z</updated>

		<summary type="html">&lt;p&gt;Peri: Add clippy to code guidelines.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains guidelines for contributing code to [[jabara]].&lt;br /&gt;
&lt;br /&gt;
== Source access ==&lt;br /&gt;
jabara is developed on a dedicated [https://forgejo.org Forgejo] instance hosted at [https://git.zelda.sr git.zelda.sr]. The primary repository is located under the [https://git.zelda.sr/jabara jabara] organization at [https://git.zelda.sr/jabara/jabara jabara/jabara].&lt;br /&gt;
&lt;br /&gt;
== Submitting changes ==&lt;br /&gt;
Contributions to jabara should be made as pull requests to the repository. (Guidelines TBD)&lt;br /&gt;
&lt;br /&gt;
== Git guidelines ==&lt;br /&gt;
Git commit messages should follow the [https://www.conventionalcommits.org/en/v1.0.0/ Conventional Commits] conventions. Here are a few well-formed examples:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;chore: flatten imports and re-export `Cpu`&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;fix(docs): use `align` instead of `style`&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After the first release, changelogs will be kept as described by [https://keepachangelog.com/en/1.1.0/ Keep a Changelog].&lt;br /&gt;
&lt;br /&gt;
== Code guidelines ==&lt;br /&gt;
&lt;br /&gt;
Check for [https://doc.rust-lang.org/stable/clippy/index.html Clippy] lints by running &amp;lt;code&amp;gt;cargo clippy&amp;lt;/code&amp;gt;, and apply suggested changes, if any. If there is a good reason not to apply Clippy&#039;s suggestion, add an &amp;lt;code&amp;gt;#[allow(clippy::some_lint)]&amp;lt;/code&amp;gt; attribute to the smallest possible region (e.g. the function containing the offending code), along with a comment explaining your decision.&lt;br /&gt;
&lt;br /&gt;
Ensure that all code has been formatted with [https://rust-lang.github.io/rustfmt/ Rustfmt] before committing. This can be done by configuring your editor to autoformat on save or by running &amp;lt;code&amp;gt;cargo fmt&amp;lt;/code&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
You can disallow local commits with clippy lints or formatting issues by creating a pre-commit hook. Create an executable file at &amp;lt;code&amp;gt;.git/hooks/pre-commit&amp;lt;/code&amp;gt; with the following content:&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
cargo clippy -- -Dwarnings&lt;br /&gt;
cargo fmt --check&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Peri</name></author>
	</entry>
	<entry>
		<id>https://wiki.zelda.sr/index.php?title=Contribution_guidelines&amp;diff=11</id>
		<title>Contribution guidelines</title>
		<link rel="alternate" type="text/html" href="https://wiki.zelda.sr/index.php?title=Contribution_guidelines&amp;diff=11"/>
		<updated>2026-03-24T19:26:08Z</updated>

		<summary type="html">&lt;p&gt;Peri: add initial guidelines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains guidelines for contributing code to [[Jabara]].&lt;br /&gt;
&lt;br /&gt;
== Source access ==&lt;br /&gt;
jabara is developed on a dedicated [https://forgejo.org Forgejo] instance hosted at [https://git.zelda.sr git.zelda.sr]. The primary repository is located under the jabara organization at [https://git.zelda.sr/jabara/jabara jabara/jabara]&lt;br /&gt;
&lt;br /&gt;
== Submitting changes ==&lt;br /&gt;
Contributions to jabara should be made as pull requests to the [https://git.zelda.sr/jabara/jabara repository].&lt;br /&gt;
(TBA more PR guidelines when this becomes relevant)&lt;br /&gt;
&lt;br /&gt;
== Git guidelines ==&lt;br /&gt;
Git commit messages should be formatted as described by [https://www.conventionalcommits.org/en/v1.0.0/ Conventional Commits]. Here are a few well-formed examples:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;chore: flatten imports and re-export `Cpu`&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;fix(docs): use `align` instead of `style`&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After the first release, changelogs will be kept as described by [https://keepachangelog.com/en/1.1.0/ Keep a Changelog].&lt;br /&gt;
&lt;br /&gt;
== Code guidelines ==&lt;br /&gt;
Ensure that all code has been formatted with rustfmt before committing. This can be accomplished through configuring your editor to autoformat on save, or running &amp;lt;code&amp;gt;cargo fmt&amp;lt;/code&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
You can disallow local commits with formatting issues by creating a pre-commit hook (create an executable file at &amp;lt;code&amp;gt;.git/hooks/pre-commit&amp;lt;/code&amp;gt;) with this content:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
cargo fmt --check&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Peri</name></author>
	</entry>
	<entry>
		<id>https://wiki.zelda.sr/index.php?title=User:Peri&amp;diff=8</id>
		<title>User:Peri</title>
		<link rel="alternate" type="text/html" href="https://wiki.zelda.sr/index.php?title=User:Peri&amp;diff=8"/>
		<updated>2026-03-24T17:47:12Z</updated>

		<summary type="html">&lt;p&gt;Peri: added :3&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:33.webp|thumb|Colon Three]]&lt;/div&gt;</summary>
		<author><name>Peri</name></author>
	</entry>
	<entry>
		<id>https://wiki.zelda.sr/index.php?title=File:33.webp&amp;diff=7</id>
		<title>File:33.webp</title>
		<link rel="alternate" type="text/html" href="https://wiki.zelda.sr/index.php?title=File:33.webp&amp;diff=7"/>
		<updated>2026-03-24T17:46:16Z</updated>

		<summary type="html">&lt;p&gt;Peri: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;33&lt;/div&gt;</summary>
		<author><name>Peri</name></author>
	</entry>
</feed>