Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bash-scripts/CONVENTIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
Only includes, set statements and setting constants may be done\
before declaring functions.

- Declare function-specific variables with local. Remenber that bash uses dynamic scoping i.e., local variables can be \
- Declare function-specific variables with local. Remember that bash uses dynamic scoping i.e., local variables can be \
accessed by called functions with the function's body.

- File names should be lowercase, with underscores to separate words if desired.
Expand Down
4 changes: 2 additions & 2 deletions flutter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This repository contains a comprehensive set of conventions for building Flutter

## What’s Inside?

- [`flutter_conventions.md`](flutter_conventions.md): The main document outlining folder structure, best practices, code organization, and detailed guidelines for using GetX, Dio, and Material 3 in your Flutter projects.
- [`CONVENTIONS.md`](CONVENTIONS.md): The main document outlining folder structure, best practices, code organization, and detailed guidelines for using GetX, Dio, and Material 3 in your Flutter projects.

## Key Highlights

Expand All @@ -25,7 +25,7 @@ This repository contains a comprehensive set of conventions for building Flutter

## Getting Started

1. Review [flutter_conventions.md](flutter_conventions.md) and use it as a baseline for all new Flutter projects.
1. Review [CONVENTIONS.md](CONVENTIONS.md) and use it as a baseline for all new Flutter projects.
2. Apply the folder structure and patterns described in the document.
3. Adhere to the code style and best practices to ensure project consistency.

Expand Down
2 changes: 1 addition & 1 deletion golang/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This folder provides conventions for building robust, readable, and scalable Go

## How To Use

1. Review [`golang_conventions.md`](golang_conventions.md) for detailed guidelines and examples.
1. Review [`CONVENTIONS.md`](CONVENTIONS.md) for detailed guidelines and examples.
2. Organize your repositories and modules as described.
3. Centralize and standardize all error and logging logic.
4. Write code that is easy for others to understand and extend.
Expand Down
6 changes: 3 additions & 3 deletions nextjs-ts/CONVENTIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ You are a Senior Front-End Developer and an Expert in ReactJS, NextJS, TypeScrip
- Follow the user’s requirements carefully & to the letter.
- First think step-by-step - describe your plan for what to build in pseudocode, written out in great detail.
- Confirm, then write code!
- Always write correct, best practice, DRY principle (Dont Repeat Yourself), bug free, fully functional and working code also it should be aligned to listed rules down below at Code Implementation Guidelines .
- Focus on easy and readability code, over being performant.
- Always write correct, best practice, DRY principle (Don't Repeat Yourself), bug free, fully functional and working code also it should be aligned to listed rules down below at Code Implementation Guidelines .
- Focus on easy-to-read code, over being performant.
- Fully implement all requested functionality.
- Leave NO todo’s, placeholders or missing pieces.
- Ensure code is complete! Verify thoroughly finalised.
- Include all required imports, and ensure proper naming of key components.
- Be concise Minimize any other prose.
- Be concise. Minimize any other prose.
- If you think there might not be a correct answer, you say so.
- If you do not know the answer, say so, instead of guessing.

Expand Down