Skip to content

Commit 14b7852

Browse files
committed
🔥 init
0 parents  commit 14b7852

File tree

6 files changed

+73
-0
lines changed

6 files changed

+73
-0
lines changed

‎.circlecci/config.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/node:10.13.0
6+
working_directory: /home/circleci/app
7+
steps:
8+
- checkout
9+
10+
- restore_cache:
11+
key: v1-dep-{{ checksum "yarn.lock" }}
12+
13+
- run:
14+
name: Install deps
15+
command: yarn install --frozen-lockfile
16+
17+
- save_cache:
18+
paths:
19+
- ./node_modules
20+
- ~/.cache
21+
key: v1-dep-{{ checksum "yarn.lock" }}
22+
23+
- run:
24+
name: Run tests
25+
command: yarn test
26+
27+
workflows:
28+
version: 2
29+
build_and_deploy:
30+
jobs:
31+
- test

‎.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

‎.prettierrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"printWidth": 100,
3+
"tabWidth": 2,
4+
"semi": true,
5+
"singleQuote": false,
6+
"trailingComma": "all",
7+
"proseWrap": "always"
8+
}

‎README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# codechecks.io — Documentation
2+
3+
1. [Getting started](getting-started.md)
4+
1. [How does it work?](#)
5+
1. [Check development](#)
6+
1. [Developing reusable checks](#)
7+
1. [Testing checks](#)
8+
1. [Roadmap](#)

‎package.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "docs",
3+
"version": "1.0.0",
4+
"private": true,
5+
"repository": "[email protected]:codechecks/docs.git",
6+
"author": "Chris Kaczor <[email protected]>",
7+
"license": "MIT",
8+
"scripts": {
9+
"test": "yarn format",
10+
"test:fix": "yarn format:fix",
11+
"format": "prettier --list-different '**/*.{ts,json,md,gql}'",
12+
"format:fix": "prettier --write '**/*.{ts,json,md,gql}'"
13+
},
14+
"devDependencies": {
15+
"prettier": "^1.16.4"
16+
}
17+
}

‎yarn.lock

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+
5+
prettier@^1.16.4:
6+
version "1.16.4"
7+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.4.tgz#73e37e73e018ad2db9c76742e2647e21790c9717"
8+
integrity sha512-ZzWuos7TI5CKUeQAtFd6Zhm2s6EpAD/ZLApIhsF9pRvRtM1RFo61dM/4MSRUA0SuLugA/zgrZD8m0BaY46Og7g==

0 commit comments

Comments
 (0)