mirror of
https://github.com/Ralim/IronOS.git
synced 2025-02-26 07:53:55 +00:00
.gitignore: refactor, unify & update (#1731)
This commit is contained in:
78
.gitignore
vendored
78
.gitignore
vendored
@@ -1,3 +1,5 @@
|
|||||||
|
#### Generic ####
|
||||||
|
|
||||||
# Object files
|
# Object files
|
||||||
*.o
|
*.o
|
||||||
*.ko
|
*.ko
|
||||||
@@ -5,6 +7,7 @@
|
|||||||
*.elf
|
*.elf
|
||||||
*.d
|
*.d
|
||||||
*.DS_Store
|
*.DS_Store
|
||||||
|
|
||||||
# Precompiled Headers
|
# Precompiled Headers
|
||||||
*.gch
|
*.gch
|
||||||
*.pch
|
*.pch
|
||||||
@@ -31,33 +34,22 @@
|
|||||||
# Debug files
|
# Debug files
|
||||||
*.dSYM/
|
*.dSYM/
|
||||||
*.su
|
*.su
|
||||||
source/.metadata/*
|
|
||||||
|
|
||||||
TS100/KiCad/TS100.bak
|
# Custom scripts & misc. files
|
||||||
Logo GUI/TS100 Logo Editor/TS100 Logo Editor/obj/
|
|
||||||
Logo GUI/TS100 Logo Editor/TS100 Logo Editor/bin/
|
|
||||||
*.cache
|
|
||||||
Translation Editor/.vscode/
|
|
||||||
Translation Editor/__pycache__/
|
|
||||||
*.pyc
|
*.pyc
|
||||||
*.lst
|
*.lst
|
||||||
*.mk
|
*.mk
|
||||||
*.list
|
*.list
|
||||||
source/Hexfile/
|
|
||||||
source/Objects/
|
|
||||||
|
|
||||||
ci/artefacts/
|
|
||||||
ci/secrets/unencrypted/
|
|
||||||
codeship.aes
|
|
||||||
.vscode/settings.json
|
|
||||||
|
|
||||||
# Auto generated files
|
# Auto generated files
|
||||||
source/Core/Inc/unit.h
|
*.cache
|
||||||
source/Core/Gen/
|
codeship.aes
|
||||||
|
CoreCompileInputs.cache
|
||||||
|
|
||||||
# IDE configs
|
# IDE configs
|
||||||
.vs/*
|
.vs/*
|
||||||
.settings/*
|
.settings/*
|
||||||
..cproject.swp
|
.cproject.swp
|
||||||
|
|
||||||
# Visual Studios
|
# Visual Studios
|
||||||
.vscode/*
|
.vscode/*
|
||||||
@@ -65,6 +57,7 @@ source/Core/Gen/
|
|||||||
!.vscode/tasks.json
|
!.vscode/tasks.json
|
||||||
!.vscode/launch.json
|
!.vscode/launch.json
|
||||||
!.vscode/extensions.json
|
!.vscode/extensions.json
|
||||||
|
.vscode/settings.json
|
||||||
|
|
||||||
# Eclipse
|
# Eclipse
|
||||||
.metadata
|
.metadata
|
||||||
@@ -120,11 +113,24 @@ local.properties
|
|||||||
.scala_dependencies
|
.scala_dependencies
|
||||||
.worksheet
|
.worksheet
|
||||||
|
|
||||||
# Jetbrains
|
# source code tagging systems (GNU Global, ctags, cscope)
|
||||||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
|
GPATH
|
||||||
|
GRTAGS
|
||||||
|
GTAGS
|
||||||
|
*tags
|
||||||
|
*tags/
|
||||||
|
.*tags
|
||||||
|
.*tags/
|
||||||
|
cscope.*
|
||||||
|
cscope/
|
||||||
|
.cscope/
|
||||||
|
|
||||||
|
|
||||||
|
#### Jetbrains: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm ####
|
||||||
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
||||||
|
|
||||||
# User-specific stuff
|
# User-specific stuff
|
||||||
|
.idea/
|
||||||
.idea/**/workspace.xml
|
.idea/**/workspace.xml
|
||||||
.idea/**/tasks.xml
|
.idea/**/tasks.xml
|
||||||
.idea/**/usage.statistics.xml
|
.idea/**/usage.statistics.xml
|
||||||
@@ -174,7 +180,35 @@ fabric.properties
|
|||||||
# Editor-based Rest Client
|
# Editor-based Rest Client
|
||||||
.idea/httpRequests
|
.idea/httpRequests
|
||||||
|
|
||||||
CoreCompileInputs.cache
|
|
||||||
.vscode/settings.json
|
#### IronOS project specific files ####
|
||||||
|
|
||||||
|
# Binaries
|
||||||
|
source/Hexfile/
|
||||||
|
source/Objects/
|
||||||
|
|
||||||
|
# Autogenerated
|
||||||
|
source/Core/Gen/
|
||||||
|
source/Core/Inc/unit.h
|
||||||
|
|
||||||
|
# Deploy
|
||||||
|
scripts/ci/artefacts/
|
||||||
|
scripts/ci/secrets/unencrypted/
|
||||||
|
|
||||||
|
# Generated static local docs
|
||||||
|
site/
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
Translations/__pycache__/
|
||||||
|
Translation Editor/__pycache__/
|
||||||
|
Translation Editor/.vscode/
|
||||||
|
|
||||||
|
# misc.
|
||||||
source/compile_commands.json
|
source/compile_commands.json
|
||||||
.idea/
|
source/.metadata/*
|
||||||
|
|
||||||
|
# TS100 related
|
||||||
|
TS100/KiCad/TS100.bak
|
||||||
|
Logo GUI/TS100 Logo Editor/TS100 Logo Editor/obj/
|
||||||
|
Logo GUI/TS100 Logo Editor/TS100 Logo Editor/bin/
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user