web frontend for git repositories, written in Go git.pocka.jp/legit.git
3

Configure Feed

Select the types of activity you want to include in your feed.

Create `.editorconfig` file

For consistent code styles. I mostly wrote down the current code style.

Shota FUJI (Mar 13, 2025, 9:37 PM +0900) 041d8a56 5acac24d

+28
+27
.editorconfig
··· 1 + # Copyright 2025 Shota FUJI <pockawoooh@gmail.com> 2 + # SPDX-License-Identifier: MIT 3 + 4 + # Do not use `.editorconfig` file outside this project. 5 + root = true 6 + 7 + [*] 8 + charset = utf-8 9 + end_of_line = lf 10 + insert_final_newline = true 11 + trim_trailing_whitespace = true 12 + indent_style = tab 13 + 14 + [{*.html,*.css,readme}] 15 + indent_style = space 16 + indent_size = 2 17 + 18 + # YAML does not support tab indentation 19 + [*.{yaml,yml}] 20 + indent_style = space 21 + indent_size = 2 22 + 23 + # Nix does not like tab indentation 24 + # https://github.com/NixOS/nix/issues/3759 25 + [*.nix] 26 + indent_style = space 27 + indent_size = 2
+1
license
··· 1 1 The MIT License (MIT) 2 2 3 3 Copyright (c) Anirudh Oppiliappan <x@icyphox.sh> 4 + Copyright 2025 Shota FUJI <pockawoooh@gmail.com> 4 5 5 6 Permission is hereby granted, free of charge, to any person obtaining a 6 7 copy of this software and associated documentation files (the