diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-07-01 19:05:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-01 19:05:21 +0200 |
commit | 6d23d40420e4548778f3ca4ed9e8cb16e0eb0073 (patch) | |
tree | 814fe2ea2f3b6b8ab9db2d12b289ba49db44c8fd /.gitignore | |
parent | e9ea960773ee6a1068623374b21d768918fbc93b (diff) |
Change Redis#exists calls to Redis#exists? to avoid deprecation warning (#14191)
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/.gitignore b/.gitignore index 9f6c4b413..4545270b3 100644 --- a/.gitignore +++ b/.gitignore @@ -17,36 +17,36 @@ /log/* !/log/.keep /tmp -coverage -public/system -public/assets -public/packs -public/packs-test +/coverage +/public/system +/public/assets +/public/packs +/public/packs-test .env .env.production .env.development -node_modules/ -build/ +/node_modules/ +/build/ # Ignore Vagrant files .vagrant/ # Ignore Capistrano customizations -config/deploy/* +/config/deploy/* # Ignore IDE files .vscode/ .idea/ # Ignore postgres + redis + elasticsearch volume optionally created by docker-compose -postgres -redis -elasticsearch +/postgres +/redis +/elasticsearch # ignore Helm lockfile, dependency charts, and local values file -chart/Chart.lock -chart/charts/*.tgz -chart/values.yaml +/chart/Chart.lock +/chart/charts/*.tgz +/chart/values.yaml # Ignore Apple files .DS_Store |