Compare commits

...

25 Commits

Author SHA1 Message Date
Tim Hatchard
e3369a1beb
Merge 6502030068 into 84c6914a9b 2026-04-04 05:01:01 +00:00
Devin Dooley
84c6914a9b
Merge pull request #4828 from quantum9Innovation/lean-gitignore
feat: create Lean.gitignore
2026-04-03 17:05:51 -07:00
Ananth Venkatesh
5f760225cf
fix: only match on .lake directory
Co-authored-by: Devin Dooley <dooleydevin@github.com>
2026-04-03 20:04:27 -04:00
Devin Dooley
f963896e65
Merge pull request #4818 from vicgeentor/patch-1
Update Agda.gitignore to exclude MAlonzo directories in any location
2026-04-03 14:15:11 -07:00
Ananth Venkatesh
b9ad512a45
feat: create Lean.gitignore 2026-03-28 21:42:41 -07:00
Vic
8431b56bed
include MAlonzo directories in any location 2026-03-18 14:07:30 +01:00
Tim Hunter
b4105e73e4
Merge pull request #4707 from stone-w4tch3r/patch-1
Add .pnpm-store to Node.gitignore
2026-02-12 09:50:51 -08:00
Daniel Johnson
53fee13f20
Merge pull request #4790 from github/bump-stale-close-time
Extend stale PR closure period to 365 days
2026-01-23 13:57:13 -08:00
Daniel Johnson
01714f2f2d
Update stale PR messages and inactivity duration comments 2026-01-23 13:27:06 -08:00
Daniel Johnson
e07ecef472
Extend stale PR closure period to 365 days
Updated the days before closing stale PRs from 180 to 365. Due to internal priorities we need to allow more time for PR reviews.

Based on my reading, we need to increase `days-before-close` to ensure that any PR marked with the `stale` label currently benefits from the extension.

Once we are caught up on the backlog, we can revisit this setting.
2026-01-23 13:24:58 -08:00
Tim Hunter
96a44720e8
Merge pull request #4752 from moezgwall/improve-cpp-gitignore
Improve C++.gitignore
2026-01-13 13:40:39 -08:00
Tim Hunter
86922aee42
Merge pull request #4747 from mikekistler/patch-1
Add .env to gitignore for dotenv files
2025-11-17 10:23:12 -08:00
Tim Hunter
003ac16f8a
Merge pull request #4746 from yutamago/feature/jetbrains-copilot-migration-files
Ignore GitHub Copilot migration files in Jetbrains IDEs
2025-11-13 11:15:10 -08:00
Mike Kistler
f0d151001c
Apply suggestion from @thorrsson 2025-11-10 13:26:09 -08:00
Mike Kistler
7ecf2d3e79
Apply suggestion from @thorrsson 2025-11-07 14:02:24 -08:00
moez chroufa
63c110e757 Improve C++.gitignore 2025-11-04 01:11:48 +01:00
Mike Kistler
ed85cd93b0
Add .env to gitignore for dotenv files 2025-10-19 11:24:35 -07:00
Angelo
a19adfd688
Ignore GitHub Copilot migration files
Add GitHub Copilot session migration files to .gitignore
2025-10-17 11:29:23 +02:00
Devin Dooley
fc6ce5da28
Merge pull request #4692 from nikitamihaqlov/main
Update Python.gitignore
2025-09-10 11:42:03 -07:00
Daniel Johnson
8fea4dc76a
Merge pull request #4513 from yahyayozo/STM32CubeIDE-gitignore
added STM32CubeIDE gitignore
2025-09-10 09:03:57 -07:00
Nikita Mikhailov
7bfab2ec5b
Merge branch 'main' into main 2025-09-10 12:59:21 +03:00
YahyaAouledAmer
c9ae3d337a
Remove .vscode rule 2025-09-06 17:33:39 +01:00
Данил Б
b238aa7039
Add .pnpm-store to Node.gitignore 2025-08-12 03:11:59 +05:00
Nikita Mikhailov
0ed6a1a3f1 Update Python.gitignore
Ensure consistency formatting for comments in Python.gitignore
2025-07-26 23:51:25 +03:00
yahyayozo
20d892ae4f added STM32CubeIDE gitignore 2024-09-27 21:38:22 +01:00
9 changed files with 116 additions and 26 deletions

View File

@ -21,10 +21,10 @@ jobs:
steps: steps:
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0 - uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
with: with:
stale-pr-message: 'This PR is stale because there have been no updates in 90 days. It will close after 180 days of inactivity. Leave a comment if you want to keep it open :smile:' stale-pr-message: 'This PR is stale because there have been no updates in 90 days. It will close after 365 days of inactivity. Leave a comment if you want to keep it open.'
close-pr-message: 'This PR has been closed because it was inactive for 180 days. If you want to continue working on it, please open a new PR.' close-pr-message: 'This PR has been closed because it was inactive for 365 days. If you want to continue working on it, please open a new PR.'
days-before-stale: 90 days-before-stale: 90
days-before-close: 180 days-before-close: 365
stale-pr-label: 'stale' stale-pr-label: 'stale'
exempt-pr-labels: 'keep' exempt-pr-labels: 'keep'
close-issue-reason: not_planned close-issue-reason: not_planned

View File

@ -1,2 +1,2 @@
*.agdai *.agdai
MAlonzo/** **/MAlonzo/**

View File

@ -21,6 +21,8 @@
*.so *.so
*.dylib *.dylib
*.dll *.dll
*.so.*
# Fortran module files # Fortran module files
*.mod *.mod
@ -37,5 +39,31 @@
*.out *.out
*.app *.app
# Build directories
build/
Build/
build-*/
# CMake generated files
CMakeFiles/
CMakeCache.txt
cmake_install.cmake
Makefile
install_manifest.txt
compile_commands.json
# Temporary files
*.tmp
*.log
*.bak
*.swp
# vcpkg
vcpkg_installed/
# debug information files # debug information files
*.dwo *.dwo
# test output & cache
Testing/
.cache/

View File

@ -36,6 +36,9 @@ ScaffoldingReadMe.txt
# NuGet Symbol Packages # NuGet Symbol Packages
*.snupkg *.snupkg
# dotenv environment variables file
.env
# Others # Others
~$* ~$*
*~ *~

View File

@ -81,3 +81,6 @@ http-client.private.env.json
# Apifox Helper cache # Apifox Helper cache
.idea/.cache/.Apifox_Helper .idea/.cache/.Apifox_Helper
.idea/ApifoxUploaderProjectSetting.xml .idea/ApifoxUploaderProjectSetting.xml
# Github Copilot persisted session migrations, see: https://github.com/microsoft/copilot-intellij-feedback/issues/712#issuecomment-3322062215
.idea/**/copilot.data.migration.*.xml

View File

@ -0,0 +1,51 @@
# STM32CubeIDE specific files
# Project-specific settings. Ignore it if developers have different preferences.
# However, if you want all team members to use the same code formatting and settings,
# consider including the .settings folder in the repository.
# /.settings/
# Ignore Eclipse-based IDE launch configurations.
# Uncomment if you want each developer to have their own unique debug configurations.
#*.launch
# Ignore any JLink-related files (debug configurations).
# Uncomment if you want each developer to have their own unique debug configurations.
#*.jlink
# Ignore log files generated by the IDE.
# These are not necessary for version control.
*.log
# Build files
# Ignore build output directories.
# These are not needed in the repository as they are generated during the build process.
Debug/
Release/
# Ignore common binary and object files generated during compilation.
# They should not be included in the repository as they are build artifacts.
*.elf
*.map
*.bin
*.hex
*.srec
*.lst
*.o
*.d
*.a
*.su
*.crl
#TouchGFX files (in case your project has touchGFX)
TouchGFX/generated
TouchGFX/build
TouchGFX/simulator/msvs/.vs
# Backup files
# Ignore temporary and backup files generated by the operating system and editor.
# These are not needed in the repository.
*.bak

2
Lean.gitignore Normal file
View File

@ -0,0 +1,2 @@
# cache and other artifacts produced by Lean's Lake build tool
.lake/

View File

@ -126,6 +126,9 @@ dist
# Stores VSCode versions used for testing VSCode extensions # Stores VSCode versions used for testing VSCode extensions
.vscode-test .vscode-test
# pnpm
.pnpm-store
# yarn v3 # yarn v3
.pnp.* .pnp.*
.yarn/* .yarn/*

View File

@ -27,8 +27,8 @@ share/python-wheels/
MANIFEST MANIFEST
# PyInstaller # PyInstaller
# Usually these files are written by a python script from a template # Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it. # before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest *.manifest
*.spec *.spec
@ -92,34 +92,34 @@ ipython_config.py
# However, in case of collaboration, if having platform-specific dependencies or dependencies # However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not # having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies. # install all needed dependencies.
#Pipfile.lock # Pipfile.lock
# UV # UV
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more # This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries. # commonly ignored for libraries.
#uv.lock # uv.lock
# poetry # poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. # 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 # This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries. # commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock # poetry.lock
#poetry.toml # poetry.toml
# pdm # pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python. # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
#pdm.lock # pdm.lock
#pdm.toml # pdm.toml
.pdm-python .pdm-python
.pdm-build/ .pdm-build/
# pixi # pixi
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control. # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
#pixi.lock # pixi.lock
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
# in the .venv directory. It is recommended not to include this directory in version control. # in the .venv directory. It is recommended not to include this directory in version control.
.pixi .pixi
@ -182,23 +182,23 @@ dmypy.json
cython_debug/ cython_debug/
# PyCharm # PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore # 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 # 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. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/ # .idea/
# Abstra # Abstra
# Abstra is an AI-powered process automation framework. # Abstra is an AI-powered process automation framework.
# Ignore directories containing user credentials, local state, and settings. # Ignore directories containing user credentials, local state, and settings.
# Learn more at https://abstra.io/docs # Learn more at https://abstra.io/docs
.abstra/ .abstra/
# Visual Studio Code # Visual Studio Code
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
# and can be added to the global gitignore or merged into this file. However, if you prefer, # and can be added to the global gitignore or merged into this file. However, if you prefer,
# you could uncomment the following to ignore the entire vscode folder # you could uncomment the following to ignore the entire vscode folder
# .vscode/ # .vscode/
# Ruff stuff: # Ruff stuff: