mirror of
https://github.com/github/gitignore
synced 2025-07-04 20:38:31 +02:00
Merge branch 'main' into FixComments
This commit is contained in:
commit
c98e9024c1
74 changed files with 1272 additions and 120 deletions
|
@ -1 +1,2 @@
|
|||
*.retry
|
||||
.ansible/
|
||||
|
|
|
@ -14,6 +14,8 @@
|
|||
*.lzma
|
||||
*.cab
|
||||
*.xar
|
||||
*.zst
|
||||
*.tzst
|
||||
|
||||
# Packing-only formats
|
||||
*.iso
|
||||
|
|
2
Global/Cursor.gitignore
Normal file
2
Global/Cursor.gitignore
Normal file
|
@ -0,0 +1,2 @@
|
|||
.cursorignore
|
||||
.cursorindexingignore
|
|
@ -48,7 +48,7 @@ local.properties
|
|||
|
||||
# Annotation Processing
|
||||
.apt_generated/
|
||||
.apt_generated_test/
|
||||
.apt_generated_tests/
|
||||
|
||||
# Scala IDE specific (Scala & Java development for Eclipse)
|
||||
.cache-main
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
||||
# Covers JetBrains IDEs: IntelliJ, GoLand, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
||||
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
||||
|
||||
# User-specific stuff
|
||||
|
@ -63,6 +63,7 @@ atlassian-ide-plugin.xml
|
|||
|
||||
# SonarLint plugin
|
||||
.idea/sonarlint/
|
||||
.idea/sonarlint.xml # see https://community.sonarsource.com/t/is-the-file-idea-idea-idea-sonarlint-xml-intended-to-be-under-source-control/121119
|
||||
|
||||
# Crashlytics plugin (for Android Studio and IntelliJ)
|
||||
com_crashlytics_export_strings.xml
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# temporary files which can be created if a process still has a handle open of a deleted file
|
||||
.fuse_hidden*
|
||||
|
||||
# KDE directory preferences
|
||||
# Metadata left by Dolphin file manager, which comes with KDE Plasma
|
||||
.directory
|
||||
|
||||
# Linux trash folder which might appear on any partition or disk
|
||||
|
@ -11,3 +11,6 @@
|
|||
|
||||
# .nfs files are created when an open file is removed but is still being accessed
|
||||
.nfs*
|
||||
|
||||
# Log files created by default by the nohup command
|
||||
nohup.out
|
||||
|
|
|
@ -1,31 +1,33 @@
|
|||
# Windows default autosave extension
|
||||
# Autosave files
|
||||
*.asv
|
||||
|
||||
# OSX / *nix default autosave extension
|
||||
*.m~
|
||||
*.autosave
|
||||
*.slx.r*
|
||||
*.mdl.r*
|
||||
|
||||
# Compiled MEX binaries (all platforms)
|
||||
# Derived content-obscured files
|
||||
*.p
|
||||
|
||||
# Compiled MEX files
|
||||
*.mex*
|
||||
|
||||
# Packaged app and toolbox files
|
||||
*.mlappinstall
|
||||
*.mltbx
|
||||
|
||||
# Deployable archives
|
||||
*.ctf
|
||||
|
||||
# Generated helpsearch folders
|
||||
helpsearch*/
|
||||
|
||||
# Simulink code generation folders
|
||||
# Code generation folders
|
||||
slprj/
|
||||
sccprj/
|
||||
|
||||
# Matlab code generation folders
|
||||
codegen/
|
||||
|
||||
# Simulink autosave extension
|
||||
*.autosave
|
||||
|
||||
# Simulink cache files
|
||||
# Cache files
|
||||
*.slxc
|
||||
|
||||
# Octave session info
|
||||
octave-workspace
|
||||
# Cloud based storage dotfile
|
||||
.MATLABDriveTag
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# Generated Metals (Scala Language Server) files
|
||||
# Reference: https://scalameta.org/metals/
|
||||
# Metals (Scala Language Server)
|
||||
# Reference: https://scalameta.org/metals/docs/editors/vscode#files-and-directories-to-include-in-your-gitignore
|
||||
.metals/
|
||||
.bloop/
|
||||
project/metals.sbt
|
||||
.ammonite/
|
||||
metals.sbt
|
||||
|
|
6
Global/PlatformIO.gitignore
Normal file
6
Global/PlatformIO.gitignore
Normal file
|
@ -0,0 +1,6 @@
|
|||
.pio
|
||||
.pioenvs
|
||||
.piolibdeps
|
||||
.vscode/.browse.c_cpp.db*
|
||||
.vscode/c_cpp_properties.json
|
||||
.vscode/launch.json
|
|
@ -10,3 +10,4 @@ project/plugins/project/
|
|||
.history
|
||||
.cache
|
||||
.lib/
|
||||
.bsp/
|
||||
|
|
|
@ -1,6 +1,2 @@
|
|||
## User settings
|
||||
xcuserdata/
|
||||
|
||||
## Xcode 8 and earlier
|
||||
*.xcscmblueprint
|
||||
*.xccheckout
|
||||
|
|
|
@ -2,9 +2,7 @@
|
|||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# Icon must end with two \r
|
||||
Icon
|
||||
Icon[
]
|
||||
|
||||
# Thumbnails
|
||||
._*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue