Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-02-12editorconfig: Set line length for Go codePatrick Steinhardt
The editorconfig is currently lacking a line length configuration for Go code. This is probably by design given that we do not have an explicit limit on line length in our style guide. But it's still helpful to have a reasonable limit set, even if we're not going to enforce it. Let's configure a line limit of 100 characters. This is not a new requirement but should rather be seen as a recommendation and help for users who use editorconfig.
2020-04-24editorconfig: Add configuration for markdown filesPatrick Steinhardt
While there is no real need to configure indentantion for Markdown files, it makes sense to configure the maximum line width. A quick survey suggested that many of our existing documents fit into a maximum line width of 80 characters, so let's use that value.
2020-04-20editorconfig: Specify indentation style for Protobuf filesPatrick Steinhardt
The editorconfig file does not currently have any forced style for Protobuf files. A quick survey shows that we're indenting these files by two spaces -- let's extend the editorconfig to reflect this.
2020-02-28editorconfig: add initial editorconfig filePatrick Steinhardt
Add an editorconfig file that sets up the expected coding style for several file types. Values for the given filetypes have been taken from other GitLab projects and were verified for a small sample count.