diff options
| author | ql3 <49830167+ql3@users.noreply.github.com> | 2019-05-17 02:31:00 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-05-17 02:31:00 +0900 |
| commit | 81625f9fc52be901d3e80b5aebe3e5106448eb5e (patch) | |
| tree | fa6c06b2649373f4422edf45bfb2443e03ad8ff9 | |
| parent | 11.15.0 (diff) | |
| download | sharkey-81625f9fc52be901d3e80b5aebe3e5106448eb5e.tar.gz sharkey-81625f9fc52be901d3e80b5aebe3e5106448eb5e.tar.bz2 sharkey-81625f9fc52be901d3e80b5aebe3e5106448eb5e.zip | |
Update gitignore to ignore config files for Intelij-IDEA (#4933)
| -rw-r--r-- | .gitignore | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore index 255b1ad4d6..5d06997f1f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,23 @@ +# Visual Studio Code +/.vscode + +# Intelij-IDEA +/.idea + +# Node.js +/node_modules + +# yarn +yarn.lock + +# config /.config/* !/.config/example.yml !/.config/mongo_initdb_example.js -/.vscode -/node_modules + +# misskey /build /built -built /data /.cache-loader /db @@ -17,7 +29,6 @@ api-docs.json *.log /redis *.code-workspace -yarn.lock .DS_Store /files ormconfig.json |