Skip to content

Commit c37165e

Browse files
joshblackmattrosno
authored andcommitted
chore(project): add initial files
* chore(project): add initial files * chore(project): sync offline mirror
1 parent 3c5a3fa commit c37165e

File tree

1,482 files changed

+11915
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,482 files changed

+11915
-2
lines changed

.circleci/config.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: 2
2+
jobs:
3+
test:
4+
docker:
5+
- image: circleci/node:10
6+
working_directory: ~/repo
7+
steps:
8+
- checkout
9+
- run:
10+
name: Install yarn
11+
command: |
12+
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.15.2
13+
export PATH=$HOME/.yarn/bin:$PATH
14+
- run: yarn install --offline --frozen-lockfile
15+
- run:
16+
name: Run ci checks
17+
command: yarn ci-check
18+
19+
workflows:
20+
version: 2
21+
main:
22+
jobs:
23+
- test

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# top-most EditorConfig file
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_size = 2
8+
indent_style = space
9+
insert_final_newline = true
10+
max_line_length = 80
11+
trim_trailing_whitespace = true
12+
13+
[*.md]
14+
trim_trailing_whitespace = false

.github/CODE_OF_CONDUCT.md

Lines changed: 34 additions & 0 deletions

.github/CONTRIBUTING.md

Lines changed: 108 additions & 0 deletions
Lines changed: 38 additions & 0 deletions
Lines changed: 16 additions & 0 deletions

.github/ISSUE_TEMPLATE/question.md

Lines changed: 28 additions & 0 deletions

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 17 additions & 0 deletions

.github/SUPPORT.md

Lines changed: 7 additions & 0 deletions

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

0 commit comments

Comments
 (0)