Skip to content

Commit 9528fa8

Browse files
authored
repo: Add gitignore (#1)
Signed-off-by: Ryan Northey <ryan@synca.io>
1 parent b0624a4 commit 9528fa8

1 file changed

Lines changed: 55 additions & 0 deletions

File tree

.gitignore

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Dot files, disallow by default, and enable explicitly
2+
\.*
3+
!\.azure-pipelines
4+
!\.bazelci
5+
!\.bazelignore
6+
!\.bazelrc
7+
!\.bazelproject
8+
!\.bazelversion
9+
!\.circleci
10+
!\.clang-format
11+
!\.clang-tidy
12+
!\.coveragerc
13+
!\.devcontainer
14+
!\.dockerignore
15+
!\.eslintrc.yml
16+
!\.flake8
17+
!\.gitattributes
18+
!\.github
19+
!\.gitignore
20+
!\.python-version
21+
!\.style.yapf
22+
!\.yamllint
23+
!\.yapfignore
24+
!\.zuul
25+
!\.zuul.yaml
26+
27+
/bazel-*
28+
/mobile/bazel-*
29+
BROWSE
30+
/build
31+
/build_*
32+
*.bzlc
33+
compile_commands.json
34+
cscope.*
35+
/generated
36+
*.pyc
37+
**/pyformat
38+
SOURCE_VERSION
39+
*.swap*
40+
tags
41+
TAGS
42+
clang-tidy-fixes.yaml
43+
clang.bazelrc
44+
user.bazelrc
45+
CMakeLists.txt
46+
cmake-build-debug
47+
/linux
48+
bazel.output.txt
49+
*~
50+
**/.DS_Store
51+
**/*.iml
52+
53+
node_modules
54+
dist
55+
*.bak

0 commit comments

Comments
 (0)