From cdc6503d0ca6ad9fd4244c063d1503d43b83dae4 Mon Sep 17 00:00:00 2001 From: Aleksejs Kovalovs Date: Sun, 14 Dec 2025 06:52:32 +0200 Subject: [PATCH] Add code of conduct --- CODE_OF_CONDUCT.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 CODE_OF_CONDUCT.md diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..b17efde --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,20 @@ +# Code of Conduct + +## Development Workflow + +To ensure code quality and consistency, please follow these guidelines when contributing to this project. + +### Before Committing + +Before creating a commit, you **MUST** run the following commands to ensure your code is formatted and the environment is correctly prepared: + +```bash +npm run format +npm run prepare +``` + +### Documentation + +If your changes modify the current functionality or add new features, you **MUST** update the `README.md` file to reflect these changes. Keeping documentation up-to-date is crucial for the project's maintainability and usability. + +Thank you for your contributions!