forked from sqlitebrowser/sqlitebrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
78 lines (65 loc) · 1.02 KB
/
.gitignore
File metadata and controls
78 lines (65 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
Makefile
sqlitebrowser.pro.user
.qmake.stash
CMakeLists.txt.user
CMakeFiles
*.cxx_parameters
# ignore any build folders
build*/
# folder with temporary test data
testdata/
# CMake (in-source build artifacts)
CMakeCache.txt
cmake_install.cmake
install_manifest.txt
compile_commands.json
CTestTestfile.cmake
Testing/
DartConfiguration.tcl
_CPack_Packages/
CPackConfig.cmake
CPackSourceConfig.cmake
# Ninja
.ninja_*
build.ninja
rules.ninja
src/.ui/
src/sqlitebrowser
src/Makefile*
src/debug
src/release
# ignore compiled translation files
src/translations/*.qm
# ignore compiled macOS app
src/*.app/
# no one needs the txt file
src/grammar/sqlite3TokenTypes.txt
libs/*/Makefile*
libs/*/*/Makefile*
libs/*/debug/
libs/*/*/debug/
libs/*/release/
libs/*/*/release/
libs/*/*.a
libs/*/*/*.a
# IDEs / editors
.idea/
.vscode/
.vs/
*.swp
*.swo
# Qt Creator
*.pro.user*
*.qbs.user*
*.qtc_clangd/
# Local/vendor worktrees
simple-master/
# Python
__pycache__/
*.pyc
.pytest_cache/
# Ignore .DS_Store files on OSX
.DS_Store
*.dSYM/
*.dmg
*.pkg