Skip to content

Commit 92639ed

Browse files
authored
all: remove */**/* gitignore rule and its !path allowlist
1 parent 1510663 commit 92639ed

1 file changed

Lines changed: 4 additions & 41 deletions

File tree

.gitignore

Lines changed: 4 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,5 @@
1-
# ignore sub-level untracked files and the v binary
2-
*/**/*
3-
4-
# unignore checker test files
5-
!vlib/v/checker/tests/*.vv
6-
!vlib/v/checker/tests/*.out
7-
!vlib/v/gen/c/testdata/nested_unary_minus_regression.vv
8-
!vlib/v/gen/c/testdata/nested_unary_minus_regression.out
9-
!vlib/v/tests/interfaces/interface_pointer_method_value_issue_22237_test.v
10-
!vlib/v/tests/net_http_request_proxy_interpolation_test.v
11-
!vlib/v/tests/project_issue_26873/**
12-
!vlib/v/tests/project_issue_26873_check_test.v
13-
!vlib/v/checker/tests/modules/c_type_cast_imported_from_module/**
14-
!vlib/v/checker/tests/modules/c_type_cast_imported_from_module.out
15-
!vlib/veb/tests/catchall_route_order_regression_test.v
16-
!vlib/net/http/head_with_content_length_test.v
17-
!vlib/net/mbedtls/mbedtls_head_with_content_length_test.v
18-
!vlib/v/checker/tests/modules/imported_struct_field_with_any_type_err/**
19-
!vlib/v/checker/tests/modules/imported_struct_field_with_any_type_err.out
20-
21-
# unignore c codegen testdata files
22-
!vlib/v/gen/c/testdata/*.vv
23-
!vlib/v/gen/c/testdata/*.out
24-
!vlib/v/gen/c/testdata/*.c
25-
!vlib/v/gen/c/testdata/*.c.must_have
26-
27-
# unignore targeted js backend regression testdata files
28-
!vlib/v/gen/js/tests/testdata/comptime_if_expr_issue_24784.v
29-
!vlib/v/gen/js/tests/testdata/comptime_if_expr_issue_24784.out
30-
31-
# unignore vlib/x/markdown
32-
!vlib/x/markdown/**
33-
!vlib/mcp/server.v
34-
!vlib/mcp/server_test.v
35-
36-
# unignore vlib/net/s3
37-
!vlib/net/s3/**
38-
39-
!.github/show_manual_release_cmd_test.v
40-
!*/
41-
# Do not add !*.* here; it overrides local excludes from .git/info/exclude.
1+
# ignore generated binaries and object files
2+
# Do not add broad unignore rules like !*.*; they override local excludes.
423
*.exe
434
*.o
445
*.so
@@ -78,6 +39,7 @@ fns.txt
7839
temp/
7940
tmp/
8041
cache/
42+
.cache/
8143

8244
# unignore special files without extension
8345
!.github/PULL_REQUEST_TEMPLATE
@@ -161,6 +123,7 @@ vls.log
161123
# ignore v2go tmperror files
162124
*.tmperr
163125

126+
.vtmp_cov_*/
164127
*/**/tmp.*
165128

166129
# ignore Intellij files

0 commit comments

Comments
 (0)