Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .codecov 2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
codecov:
require_ci_to_pass: false

comment: false

coverage:
status:
patch:
default:
target: auto
project:
default:
target: auto
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
.git
.cache
19 changes: 19 additions & 0 deletions .editorconfig 2
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org
#
# Some of these options are also respected by Prettier

root = true

[*]
indent_style = space
indent_size = 2

end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.{md,snap}]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .gitattributes 2
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
58 changes: 58 additions & 0 deletions .gitignore 2
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
.idea
.DS_STORE
.eslintcache
*.swp
*~
/examples/*/node_modules/

/e2e/*/node_modules
/e2e/*/.pnp
/e2e/*/.pnp.js
!/e2e/presets/json/node_modules
!/e2e/presets/js/node_modules
/e2e/transform/*/coverage
/e2e/transform/*/node_modules

/node_modules

/packages/*/build/
/packages/*/dist/
/packages/*/coverage/
/packages/*/node_modules/

/website/.docusaurus
/website/.cache-loader
/website/build
/website/backers.json
/website/node_modules
/website/yarn.lock
/website/i18n/*

/benchmarks/*/node_modules/

/reports/*

coverage
lerna-debug.log
npm-debug.log
npm-debug.log*
yarn-error.log*
junit.xml
package-lock.json

*.tsbuildinfo
api-extractor.json

# https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored but nested for e2e directories
**/.yarn/*
!**/.yarn/patches
!**/.yarn/releases
!**/.yarn/plugins
!**/.yarn/sdks
!**/.yarn/versions
**/.pnp.*

crowdin-cli.jar

# We don't want these temp files
packages/jest-worker/src/workers/__tests__/__temp__
4 changes: 4 additions & 0 deletions .gitpod 2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Commands to start on workspace startup. See https://www.gitpod.io/docs/config-gitpod-file
tasks:
- init: yarn install && yarn run build
command: yarn run watch
26 changes: 26 additions & 0 deletions .prettierignore 2
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
.idea
.DS_STORE
.eslintcache
*.swp
*~
api-extractor.json
coverage

/packages/*/build
/packages/*/dist
/packages/jest-config/src/__tests__/jest-preset.json
/packages/pretty-format/__benchmarks__/world.geo.json

# Breaks tests
/e2e/coverage-handlebars/greet.hbs

# Third-party script
packages/jest-diff/src/cleanupSemantic.ts

/website/.docusaurus
/website/backers.json
/website/build
/website/versions.json

**/.yarn
**/.pnp.*
5 changes: 5 additions & 0 deletions CODE_OF_CONDUCT 2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Code of Conduct

Jest is an OpenJS Foundation project and subscribes to its code of conduct.

It is available at https://code-of-conduct.openjsf.org/.
Loading
Loading