forked from wp-graphql/wp-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
72 lines (49 loc) · 1.77 KB
/
.gitignore
File metadata and controls
72 lines (49 loc) · 1.77 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
# Hidden files on Windows machines
.DS_Store
# Hidden files for users using JetBrains IDEs (PHPStorm, WebStorm, etc)
.idea
# Hidden files for users using VSCode as their IDE.
.vscode
# Cursor files for users using the Cursor IDE
# Ignore all files under the .cursor directory as users will use this directory for personal IDE configuration
.cursor/*
# Do not ignore the prd.md file as this helps cursor understand the project and requirements and the community can help maintain it
!.cursor/prd.md
# Do not ignore the cursor/rules directory as it contains project-specific rules that should be shared with all contributors
!.cursor/rules
!.cursor/rules/**
# Composer dependencies. These should be installed on the users machine
vendor
# We _do_ want to version our tests!
!/tests
# Test suite config files. Used to overried the *.suite.dist.yml configs
/tests/*.suite.yml
# PHPCS cached files.
/tests/_output/*.json
# Directory used to generate the .zip for deploying to WordPress.org
plugin-build
# Output of testing code coverage
coverage/*
# Generated Schema used in some tooling. Versioned Schema is uploaded as a Release artifact to Github.
schema.graphql
# Used to override phpcs.xml.dist
phpcs.xml
# Config for phpunit. Used to override phpunit.xml.dist
phpunit.xml
# Files output by Docker
docker-output
# JavaScript dependencies. Should be installed locally on the machine, not versioned
node_modules
# Config for Codeception. Used to override the codeception.dist.yml
codeception.yml
# Log files
.log
# File used for Codeception to track test coverage
c3.php
# Used for setting local environment variables when testing
.env
# output from e2e tests
artifacts
# Changesets
# Note: Do NOT ignore .changeset/*.md files as they are needed for release management
.changeset/pre.json