Compare commits

...

5 Commits

Author SHA1 Message Date
Knut Guettel
fa95484db4
Merge 6796a2d405 into d49bd6f0f7 2025-01-18 16:26:23 +00:00
Devin Dooley
d49bd6f0f7
Merge pull request #4289 from csauge/patch-1
Update Python.gitignore for .ruff_cache/
2025-01-17 13:20:13 -08:00
Devin Dooley
e8554d85bf
Merge branch 'main' into patch-1 2025-01-17 13:19:34 -08:00
Christophe Saugé
4f0b7a0694
Update Python.gitignore
Add ruff cache. 
ruff tool: https://github.com/charliermarsh/ruff
ruff is becoming a very popular tool often run in pre-commit and aim to replace Flake8 (plus dozens of plugins), isort, pydocstyle, yesqa, eradicate, pyupgrade, and autoflake, all while executing tens or hundreds of times faster than any individual tool.
2023-05-01 20:49:13 +02:00
Knut Guettel
6796a2d405
Update TwinCAT3.gitignore
adapted to the current version and to the fact that the expcluded folders can also exist in subfolders
2022-12-15 12:41:58 +01:00
2 changed files with 26 additions and 14 deletions

View File

@ -167,5 +167,8 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
# Ruff stuff:
.ruff_cache/
# PyPI configuration file
.pypirc

View File

@ -3,23 +3,32 @@
#
# Recommended: VisualStudio.gitignore
# TwinCAT files
# TwinCAT3 PLC
*.plcproj.bak
*.plcproj.orig
*.tpy
*.tclrs
*.compiled-library
*.compileinfo
# Don't include the tmc-file rule if either of the following is true:
# 1. You've got TwinCAT C++ projects, as the information in the TMC-file is created manually for the C++ projects (in that case, only (manually) ignore the tmc-files for the PLC projects)
# 2. You've created a standalone PLC-project and added events to it, as these are stored in the TMC-file.
*.tmc
*.tmcRefac
*.library
*.project.~u
*.tsproj.bak
*.xti.bak
*.compileinfo
LineIDs.dbg
LineIDs.dbg.bak
_Boot/
_CompileInfo/
_Libraries/
_ModuleInstall/
*.tmcRefac
# TwinCAT3 project files
*.tsproj.bak
*.tsproj.b?k
*.tsproj.orig
*.xti.bak
*.xti.b?k
*.xti.orig
*.project.~u
# folders that should be excluded
**/_Boot/
**/_CompileInfo/
**/_Libraries/
**/_ModuleInstall/
**/_Deployment/
**/_Repository/