Created
April 12, 2023 17:21
-
-
Save danilor/8b5d28ec349561576b765ea4534de886 to your computer and use it in GitHub Desktop.
GlobalGitIgnore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Angular | |
.DS_STORE | |
/dist/ | |
/bazel-out | |
/integration/bazel/bazel-* | |
*.log | |
/node_modules/ | |
# CircleCI temporary file for cache key computation. | |
# See `save_month_to_file` in `.circleci/config.yml`. | |
month.txt | |
# Include when developing application packages. | |
pubspec.lock | |
.c9 | |
.idea/ | |
.devcontainer/* | |
!.devcontainer/README.md | |
!.devcontainer/recommended-devcontainer.json | |
!.devcontainer/recommended-Dockerfile | |
.settings/ | |
.vscode/launch.json | |
.vscode/settings.json | |
.vscode/tasks.json | |
*.swo | |
*.swp | |
modules/.settings | |
modules/.vscode | |
.vimrc | |
.nvimrc | |
# Don't check in secret files | |
*secret.js | |
# Ignore npm/yarn debug log | |
npm-debug.log | |
yarn-error.log | |
# build-analytics | |
.build-analytics | |
# rollup-test output | |
/modules/rollup-test/dist/ | |
# User specific bazel settings | |
.bazelrc.user | |
# User specific ng-dev settings | |
.ng-dev.user* | |
.notes.md | |
baseline.json | |
# Ignore .history for the xyz.local-history VSCode extension | |
.history | |
# Husky | |
.husky/_ | |
aio/content/examples/.DS_Store | |
# Docker | |
# Docker project generated files to ignore | |
# if you want to ignore files created by your editor/tools, | |
# please consider a global .gitignore https://help.github.com/articles/ignoring-files | |
.vagrant* | |
bin | |
docker/docker | |
.*.swp | |
a.out | |
*.orig | |
build_src | |
.flymake* | |
.idea | |
.DS_Store | |
docs/_build | |
docs/_static | |
docs/_templates | |
.gopath/ | |
.dotcloud | |
*.test | |
bundles/ | |
.hg/ | |
.git/ | |
vendor/pkg/ | |
pyenv | |
Vagrantfile | |
# Jetbrains | |
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider | |
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 | |
# User-specific stuff | |
.idea/**/workspace.xml | |
.idea/**/tasks.xml | |
.idea/**/usage.statistics.xml | |
.idea/**/dictionaries | |
.idea/**/shelf | |
# AWS User-specific | |
.idea/**/aws.xml | |
# Generated files | |
.idea/**/contentModel.xml | |
# Sensitive or high-churn files | |
.idea/**/dataSources/ | |
.idea/**/dataSources.ids | |
.idea/**/dataSources.local.xml | |
.idea/**/sqlDataSources.xml | |
.idea/**/dynamic.xml | |
.idea/**/uiDesigner.xml | |
.idea/**/dbnavigator.xml | |
# Gradle | |
.idea/**/gradle.xml | |
.idea/**/libraries | |
# Gradle and Maven with auto-import | |
# When using Gradle or Maven with auto-import, you should exclude module files, | |
# since they will be recreated, and may cause churn. Uncomment if using | |
# auto-import. | |
# .idea/artifacts | |
# .idea/compiler.xml | |
# .idea/jarRepositories.xml | |
# .idea/modules.xml | |
# .idea/*.iml | |
# .idea/modules | |
# *.iml | |
# *.ipr | |
# CMake | |
cmake-build-*/ | |
# Mongo Explorer plugin | |
.idea/**/mongoSettings.xml | |
# File-based project format | |
*.iws | |
# IntelliJ | |
out/ | |
# mpeltonen/sbt-idea plugin | |
.idea_modules/ | |
# JIRA plugin | |
atlassian-ide-plugin.xml | |
# Cursive Clojure plugin | |
.idea/replstate.xml | |
# SonarLint plugin | |
.idea/sonarlint/ | |
# Crashlytics plugin (for Android Studio and IntelliJ) | |
com_crashlytics_export_strings.xml | |
crashlytics.properties | |
crashlytics-build.properties | |
fabric.properties | |
# Editor-based Rest Client | |
.idea/httpRequests | |
# Android studio 3.1+ serialized cache file | |
.idea/caches/build_file_checksums.ser | |
# Vagrant | |
# General | |
.vagrant/ | |
# Log files (if you are creating logs in debug mode, uncomment this) | |
# *.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment