forked from wp-graphql/wp-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
59 lines (40 loc) · 1.25 KB
/
.gitignore
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
# 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
# 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
# Used to send code coverage to Coveralls
php-coveralls.phar
# 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