Fixes Spacing Consistency

This commit is contained in:
Brusk Hamarash 2021-10-03 04:34:00 +03:00
parent a762e256b3
commit fa92ffc431
No known key found for this signature in database
GPG Key ID: 509F705341F6504F

View File

@ -145,8 +145,12 @@ Applications must be built in a consistent manner from the perspective of the en
All software must be backward-compatible by default and must take previous versions into considerations. If this not possible or for some design reasons need to change, an approval from the Head of Digital Development Team must be obtained. Unapproved changes that do not adhere to this principle will be considered a bug.
### Acceptance
### Deadlines
All agreed deadlines must be kept as they are unless it is specified or extended explicitly by the Head of Digital Development Team. <u>Members of the Digital Development Team</u> are not obligated to accommodate for requests for late-term changes in the requirements.
@ -155,6 +159,8 @@ In case if priorities change and the agreed deadlines cannot be met, it must be
Each release development must come with a time plan that is approved by the Head of Digital Development Team.
### Versioning
We follow the [Semantic Versioning 2.0.0](https://semver.org/) standards to version releases. Accordingly, software applications must be versioned with the following pattern: `MAJOR.MINOR.PATCH.`
@ -294,6 +300,8 @@ We also recommend reading the official [Best practices for writing Dockerfiles](
### Statelessness
### Race Condition
Race condition is the situation where certain behavior of a system is controlled by the sequence or the timing of events; hence resulting in unintended consequences that are typically considered to be a bug.
@ -341,8 +349,6 @@ def update_without_logging(resource_id)
end
```
#### Database Decisions
##### Uniqueness