<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://developerwiki.proventusnova.com/index.php?action=history&amp;feed=atom&amp;title=Naming_Conventions</id>
	<title>Naming Conventions - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://developerwiki.proventusnova.com/index.php?action=history&amp;feed=atom&amp;title=Naming_Conventions"/>
	<link rel="alternate" type="text/html" href="https://developerwiki.proventusnova.com/index.php?title=Naming_Conventions&amp;action=history"/>
	<updated>2026-04-18T06:21:02Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.17</generator>
	<entry>
		<id>https://developerwiki.proventusnova.com/index.php?title=Naming_Conventions&amp;diff=208&amp;oldid=prev</id>
		<title>Admin: Create Naming Conventions page</title>
		<link rel="alternate" type="text/html" href="https://developerwiki.proventusnova.com/index.php?title=Naming_Conventions&amp;diff=208&amp;oldid=prev"/>
		<updated>2025-06-16T05:02:56Z</updated>

		<summary type="html">&lt;p&gt;Create Naming Conventions page&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Naming Conventions ==&lt;br /&gt;
&lt;br /&gt;
This section shows the standard naming conventions used in ProventusNova’s codebases to ensure consistency, readability, and alignment.&lt;br /&gt;
&lt;br /&gt;
=== Classes (PascalCase) ===&lt;br /&gt;
PascalCase is used to name classes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
class NamingConvention:&lt;br /&gt;
    def __init__(self):&lt;br /&gt;
        pass&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Variables (camelCase) ===&lt;br /&gt;
camelCase is used to name variables.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
firstName = &amp;quot;proventusNova&amp;quot;&lt;br /&gt;
lastName = &amp;quot;doe&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Functions, Files, and Directories (snake_case) ===&lt;br /&gt;
snake_case is used for function names, file names, and directories.&lt;br /&gt;
&lt;br /&gt;
File: &amp;lt;code&amp;gt;sample_file.py&amp;lt;/code&amp;gt;  &lt;br /&gt;
Directory: &amp;lt;code&amp;gt;test_folder/&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
def this_function(self):&lt;br /&gt;
    return self&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Git Branches (kebab-case) ===&lt;br /&gt;
kebab-case is used for naming Git branches.&lt;br /&gt;
&lt;br /&gt;
Example:  &lt;br /&gt;
&amp;lt;code&amp;gt;feature/naming-conventions&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Footer}}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
</feed>