blob: e917c499f0be4bb18ec68b9005b8a109e85fe888 [file] [log] [blame]
Michele Di Giorgiob303fc82021-02-16 17:48:42 +00001# Library builds
2build/
3
4# Cscope/Ctags files
5*cscope*
6
7# Text files
8*.txt
9*.xml
10*.embed
11
12# Generated Android bp file
13Generated_Android.bp
14
15# Vim swap files
16*.swp
17
18# Logs
19*.log
20
21### C++ ###
22# Object files
23*.o
24
25# Dynamic libraries
26*.so
27
28# Static libraries
29*.a
30
31# Executable binaries
32*.out
33
34### Python ###
35# Byte-compiled files
36*.py[cod]
37
38# Installer logs
39pip-log.txt
40pip-delete-this-directory.txt
41
42# Environments
43.env
44.venv
45env/
46venv/
47ENV/
Georgios Pinitas71c3cde2021-03-08 09:43:21 +000048
49# IDE folders
50.idea/
51.vscode/