1
0
mirror of https://github.com/github/gitignore synced 2024-11-29 15:14:21 +01:00

Merge branch 'main' into vscode-generated-import-helper

This commit is contained in:
Brian Douglas 2021-12-10 16:34:48 -08:00 committed by GitHub
commit c090f2d247
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
25 changed files with 220 additions and 105 deletions

View File

@ -1,4 +1,5 @@
**Reasons for making this change:** **Reasons for making this change:**
<!-- Include your relationship to the project and what you expect to get from this change. -->
_TODO_ _TODO_

22
AL.gitignore Normal file
View File

@ -0,0 +1,22 @@
### AL ###
#Template for AL projects for Dynamics 365 Business Central
#launch.json folder
.vscode/
#Cache folder
.alcache/
#Symbols folder
.alpackages/
#Snapshots folder
.snapshots/
#Testing Output folder
.output/
#Extension App-file
*.app
#Rapid Application Development File
rad.json
#Translation Base-file
*.g.xlf
#License-file
*.flf
#Test results file
TestResults.xml

View File

@ -1,22 +1,3 @@
# Built application files
*.apk
*.aar
*.ap_
*.aab
# Files for the ART/Dalvik VM
*.dex
# Java class files
*.class
# Generated files
bin/
gen/
out/
# Uncomment the following line in case you need and you don't have the release build type files in your app
# release/
# Gradle files # Gradle files
.gradle/ .gradle/
build/ build/
@ -24,66 +5,26 @@ build/
# Local configuration file (sdk path, etc) # Local configuration file (sdk path, etc)
local.properties local.properties
# Proguard folder generated by Eclipse # Log/OS Files
proguard/
# Log Files
*.log *.log
# Android Studio Navigation editor temp files # Android Studio generated files and folders
.navigation/
# Android Studio captures folder
captures/ captures/
.externalNativeBuild/
.cxx/
*.apk
output.json
# IntelliJ # IntelliJ
*.iml *.iml
.idea/workspace.xml .idea/
.idea/tasks.xml
.idea/gradle.xml
.idea/assetWizardSettings.xml
.idea/dictionaries
.idea/libraries
.idea/jarRepositories.xml
# Android Studio 3 in .gitignore file.
.idea/caches
.idea/modules.xml
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
.idea/navEditor.xml
# Keystore files # Keystore files
# Uncomment the following lines if you do not want to check your keystore files in. *.jks
#*.jks *.keystore
#*.keystore
# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild
.cxx/
# Google Services (e.g. APIs or Firebase) # Google Services (e.g. APIs or Firebase)
# google-services.json google-services.json
# Freeline
freeline.py
freeline/
freeline_project_description.json
# fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md
# Version control
vcs.xml
# lint
lint/intermediates/
lint/generated/
lint/outputs/
lint/tmp/
# lint/reports/
# Android Profiling # Android Profiling
*.hprof *.hprof

11
Global/AL.gitignore Normal file
View File

@ -0,0 +1,11 @@
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
# Local History for Visual Studio Code
.history/
*.app
.snapshots/*

View File

@ -0,0 +1,2 @@
# Syncthing caches
.stversions

View File

@ -1,9 +1,9 @@
.vscode/* .vscode/
!.vscode/settings.json !.vscode/settings.json
!.vscode/tasks.json !.vscode/tasks.json
!.vscode/launch.json !.vscode/launch.json
!.vscode/extensions.json !.vscode/extensions.json
*.code-workspace !.vscode/*.code-snippets
# Local History for Visual Studio Code # Local History for Visual Studio Code
.history/ .history/

View File

@ -13,3 +13,6 @@
# Dependency directories (remove the comment below to include it) # Dependency directories (remove the comment below to include it)
# vendor/ # vendor/
# Go workspace file
go.work

View File

@ -1,2 +1,7 @@
# Idris 2
*.ttc
*.ttm
# Idris 1
*.ibc *.ibc
*.o *.o

View File

@ -21,3 +21,4 @@
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid* hs_err_pid*
replay_pid*

View File

@ -1,5 +1,5 @@
# For PCBs designed using KiCad: http://www.kicad-pcb.org/ # For PCBs designed using KiCad: https://www.kicad.org/
# Format documentation: http://kicad-pcb.org/help/file-formats/ # Format documentation: https://kicad.org/help/file-formats/
# Temporary files # Temporary files
*.000 *.000

View File

@ -54,6 +54,9 @@ web_modules/
# Optional eslint cache # Optional eslint cache
.eslintcache .eslintcache
# Optional stylelint cache
.stylelintcache
# Microbundle cache # Microbundle cache
.rpt2_cache/ .rpt2_cache/
.rts2_cache_cjs/ .rts2_cache_cjs/
@ -70,9 +73,10 @@ web_modules/
.yarn-integrity .yarn-integrity
# dotenv environment variables file # dotenv environment variables file
.env .env.development.local
.env.test .env.test.local
.env.production .env.production.local
.env.local
# parcel-bundler cache (https://parceljs.org/) # parcel-bundler cache (https://parceljs.org/)
.cache .cache
@ -95,6 +99,10 @@ dist
# vuepress build output # vuepress build output
.vuepress/dist .vuepress/dist
# vuepress v2.x temp and cache directory
.temp
.cache
# Serverless directories # Serverless directories
.serverless/ .serverless/

View File

@ -94,6 +94,13 @@ ipython_config.py
# install all needed dependencies. # install all needed dependencies.
#Pipfile.lock #Pipfile.lock
# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock
# PEP 582; used by e.g. github.com/David-OConnor/pyflow # PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/ __pypackages__/
@ -139,3 +146,10 @@ cython_debug/
# VSCode import helper # VSCode import helper
PythonImportHelper-v2-Completion.json PythonImportHelper-v2-Completion.json
# PyCharm
# JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

View File

@ -4,6 +4,7 @@
# Session Data files # Session Data files
.RData .RData
.RDataTmp
# User-specific files # User-specific files
.Ruserdata .Ruserdata
@ -43,3 +44,6 @@ docs/
# translation temp files # translation temp files
po/*~ po/*~
# RStudio Connect folder
rsconnect/

View File

@ -26,7 +26,7 @@ We support a collection of templates, organized in this way:
unimportant files into your repository. unimportant files into your repository.
- [`Global`](./Global) contains templates for various editors, tools and - [`Global`](./Global) contains templates for various editors, tools and
operating systems that can be used in different situations. It is recommended operating systems that can be used in different situations. It is recommended
that you either [add these to your global template](https://help.github.com/articles/ignoring-files/#create-a-global-gitignore) that you either [add these to your global template](https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files#configuring-ignored-files-for-all-repositories-on-your-computer)
or merge these rules into your project-specific templates if you want to use or merge these rules into your project-specific templates if you want to use
them permanently. them permanently.
- [`community`](./community) contains specialized templates for other popular - [`community`](./community) contains specialized templates for other popular
@ -141,7 +141,7 @@ Heres how we suggest you go about proposing a change to this project:
1. [Fork this project][fork] to your account. 1. [Fork this project][fork] to your account.
2. [Create a branch][branch] for the change you intend to make. 2. [Create a branch][branch] for the change you intend to make.
3. Make your changes to your fork. 3. Make your changes to your fork.
4. [Send a pull request][pr] from your forks branch to our `master` branch. 4. [Send a pull request][pr] from your forks branch to our `main` branch.
Using the web-based interface to make changes is fine too, and will help you Using the web-based interface to make changes is fine too, and will help you
by automatically forking the project and prompting to send a pull request too. by automatically forking the project and prompting to send a pull request too.

View File

@ -27,7 +27,7 @@ config/master.key
# dotenv, dotenv-rails # dotenv, dotenv-rails
# TODO Comment out these rules if environment variables can be committed # TODO Comment out these rules if environment variables can be committed
.env .env
.env.* .env*.local
## Environment normalization: ## Environment normalization:
/.bundle /.bundle

View File

@ -111,10 +111,17 @@ acs-*.bib
*.glsdefs *.glsdefs
*.lzo *.lzo
*.lzs *.lzs
*.slg
*.slo
*.sls
# uncomment this for glossaries-extra (will ignore makeindex's style files!) # uncomment this for glossaries-extra (will ignore makeindex's style files!)
# *.ist # *.ist
# gnuplot
*.gnuplot
*.table
# gnuplottex # gnuplottex
*-gnuplottex-* *-gnuplottex-*
@ -189,6 +196,9 @@ _minted*
# scrwfile # scrwfile
*.wrt *.wrt
# svg
svg-inkscape/
# sympy # sympy
*.sout *.sout
*.sympy *.sympy
@ -213,6 +223,9 @@ pythontex-files-*/
*.md5 *.md5
*.auxlock *.auxlock
# titletoc
*.ptc
# todonotes # todonotes
*.tdo *.tdo

View File

@ -1,6 +1,6 @@
## Ignore Umbraco files/folders generated for each instance ## Ignore Umbraco files/folders generated for each instance
## ##
## Get latest from https://github.com/github/gitignore/blob/master/Umbraco.gitignore ## Get latest from https://github.com/github/gitignore/blob/main/Umbraco.gitignore
# Note: VisualStudio gitignore rules may also be relevant # Note: VisualStudio gitignore rules may also be relevant

View File

@ -1,6 +1,6 @@
# This .gitignore file should be placed at the root of your Unity project directory # This .gitignore file should be placed at the root of your Unity project directory
# #
# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore # Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
# #
/[Ll]ibrary/ /[Ll]ibrary/
/[Tt]emp/ /[Tt]emp/
@ -14,8 +14,8 @@
# They also could contain extremely sensitive data # They also could contain extremely sensitive data
/[Mm]emoryCaptures/ /[Mm]emoryCaptures/
# Asset meta data should only be ignored when the corresponding asset is also ignored # Recordings can get excessive in size
!/[Aa]ssets/**/*.meta /[Rr]ecordings/
# Uncomment this line if you wish to ignore the asset store tools plugin # Uncomment this line if you wish to ignore the asset store tools plugin
# /[Aa]ssets/AssetStoreTools* # /[Aa]ssets/AssetStoreTools*
@ -59,6 +59,7 @@ sysinfo.txt
*.apk *.apk
*.aab *.aab
*.unitypackage *.unitypackage
*.app
# Crashlytics generated file # Crashlytics generated file
crashlytics-build.properties crashlytics-build.properties

View File

@ -1,7 +1,7 @@
## Ignore Visual Studio temporary files, build results, and ## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons. ## files generated by popular Visual Studio add-ons.
## ##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore ## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
# User-specific files # User-specific files
*.rsuser *.rsuser
@ -206,9 +206,6 @@ PublishScripts/
*.nuget.props *.nuget.props
*.nuget.targets *.nuget.targets
# Nuget personal access tokens and Credentials
nuget.config
# Microsoft Azure Build Output # Microsoft Azure Build Output
csx/ csx/
*.build.csdef *.build.csdef
@ -297,6 +294,17 @@ node_modules/
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw *.vbw
# Visual Studio 6 auto-generated project file (contains which files were open etc.)
*.vbp
# Visual Studio 6 workspace and project file (working project files containing files to include in project)
*.dsw
*.dsp
# Visual Studio 6 technical files
*.ncb
*.aps
# Visual Studio LightSwitch build output # Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts **/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts **/*.DesktopClient/GeneratedArtifacts
@ -353,6 +361,9 @@ ASALocalRun/
# Local History for Visual Studio # Local History for Visual Studio
.localhistory/ .localhistory/
# Visual Studio History (VSHistory) files
.vshistory/
# BeatPulse healthcheck temp database # BeatPulse healthcheck temp database
healthchecksdb healthchecksdb
@ -384,5 +395,4 @@ FodyWeavers.xsd
*.msp *.msp
# JetBrains Rider # JetBrains Rider
.idea/
*.sln.iml *.sln.iml

View File

@ -1,23 +1,48 @@
# ignore everything in the root except the "wp-content" directory. # Wordpress - ignore core, configuration, examples, uploads and logs.
!wp-content/ # https://github.com/github/gitignore/blob/main/WordPress.gitignore
# ignore everything in the "wp-content" directory, except: # Core
# "mu-plugins", "plugins", "themes" directory #
wp-content/* # Note: if you want to stage/commit WP core files
!wp-content/mu-plugins/ # you can delete this whole section/until Configuration.
!wp-content/plugins/ /wp-admin/
!wp-content/themes/ /wp-content/index.php
/wp-content/languages
/wp-content/plugins/index.php
/wp-content/themes/index.php
/wp-includes/
/index.php
/license.txt
/readme.html
/wp-*.php
/xmlrpc.php
# ignore these plugins # Configuration
wp-content/plugins/hello.php wp-config.php
# ignore specific themes # Example themes
wp-content/themes/twenty*/ /wp-content/themes/twenty*/
# ignore node dependency directories # Example plugin
node_modules/ /wp-content/plugins/hello.php
# ignore log files and databases # Uploads
/wp-content/uploads/
# Log files
*.log *.log
*.sql
*.sqlite # htaccess
/.htaccess
# All plugins
#
# Note: If you wish to whitelist plugins,
# uncomment the next line
#/wp-content/plugins
# All themes
#
# Note: If you wish to whitelist themes,
# uncomment the next line
#/wp-content/themes

View File

@ -4,3 +4,10 @@
# Ignore all bazel-* symlinks. There is no full list since this can change # Ignore all bazel-* symlinks. There is no full list since this can change
# based on the name of the directory bazel is cloned into. # based on the name of the directory bazel is cloned into.
/bazel-* /bazel-*
# Directories for the Bazel IntelliJ plugin containing the generated
# IntelliJ project files and plugin configuration. Seperate directories are
# for the IntelliJ, Android Studio and CLion versions of the plugin.
/.ijwb/
/.aswb/
/.clwb/

3
community/Beef.gitignore Normal file
View File

@ -0,0 +1,3 @@
build/
recovery/
BeefSpace_User.toml

View File

@ -0,0 +1,23 @@
# Allowlisting gitignore template for GO projects prevents us
# from adding various unwanted local files, such as generated
# files, developer configurations or IDE-specific files etc.
#
# Recommended: Go.AllowList.gitignore
# Ignore everything
*
# But not these files...
!/.gitignore
!*.go
!go.sum
!go.mod
!README.md
!LICENSE
# !Makefile
# ...even if they are in subdirectories
!*/

View File

@ -1,8 +1,13 @@
# Generated files by hugo # Generated files by hugo
/public/ /public/
/resources/_gen/ /resources/_gen/
/assets/jsconfig.json
hugo_stats.json
# Executable may be added to repository # Executable may be added to repository
hugo.exe hugo.exe
hugo.darwin hugo.darwin
hugo.linux hugo.linux
# Temporary lock file while building
/.hugo_build.lock

View File

@ -0,0 +1,16 @@
# gitignore template for LensStudio
# website: https://lensstudio.snapchat.com/
# macOS/IDE #
.DS_Store
.idea
# js #
node_modules
yarn.lock
# Python #
__pycache__/
*.py[cod]
*$py.class
[Bb]ackup*