Skip to content
Snippets Groups Projects
Commit f4d31ed7 authored by Michelle Weidling's avatar Michelle Weidling :blowfish:
Browse files

style: fix formatting

parent 6c04e1a8
No related branches found
No related tags found
1 merge request!26Resolve "Improve document structure"
Pipeline #138779 passed with warnings
...@@ -12,7 +12,10 @@ Originally based on the [EURISE Network Technical Reference](https://github.com/ ...@@ -12,7 +12,10 @@ Originally based on the [EURISE Network Technical Reference](https://github.com/
## Contributing ## Contributing
Commits have to be made following a certain convention that is defined by the [Conventional Commit](https://www.conventionalcommits.org/en/v1.0.0/) standard. This repo is designed to be used with [Commitizen](https://github.com/commitizen/cz-cli) for which we provide a configuration in `package.json`. Commits have to be made following a certain convention that is defined by the
[Conventional Commit](https://www.conventionalcommits.org/en/v1.0.0/) standard.
This repo is designed to be used with [Commitizen](https://github.com/commitizen/cz-cli) for which we provide a
configuration in `package.json`.
Install it with Install it with
...@@ -22,14 +25,16 @@ npm install ...@@ -22,14 +25,16 @@ npm install
You can now run a commit using commitizen with `git cz`. You can now run a commit using commitizen with `git cz`.
To run commitizen on `git commit` rather than on `git cz`, update or create `.git/hooks/prepare-commit-msg` with the following code: To run commitizen on `git commit` rather than on `git cz`, update or create `.git/hooks/prepare-commit-msg` with the
following code:
```bash ```bash
#!/bin/bash #!/bin/bash
exec < /dev/tty && node_modules/.bin/git-cz --hook || true exec < /dev/tty && node_modules/.bin/git-cz --hook || true
``` ```
We have configured three types of commits for the work on the technical reference that should reflect the extent of your contribution: We have configured three types of commits for the work on the technical reference that should reflect the extent of your
contribution:
- PATCH: Small addition to or revision of Technical reference. - PATCH: Small addition to or revision of Technical reference.
- MINOR: Medium addition to or revision of Technical reference. - MINOR: Medium addition to or revision of Technical reference.
......
## FE-Onboarding ## FE-Onboarding
This section focuses on the specific needs and requirements of developers new to the department. This section focuses on the specific needs and requirements of developers new to the department.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment