Skip to content

Commit 3cd1c96

Browse files
committed
init
0 parents  commit 3cd1c96

File tree

8 files changed

+132
-0
lines changed

8 files changed

+132
-0
lines changed

.gitignore

Whitespace-only changes.

.npmignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
node_modules
2+
src/*.js
3+
test/**/*.ts
4+
.tmp/*.js
5+
6+
snippets.cson
7+
test
8+
src
9+
tsconfig.json
10+
tslint.json

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Change Log
2+
All notable changes to this project will be documented in this file.
3+
This project adheres to [Semantic Versioning](http://semver.org/).
4+
5+
## [0.1.0] - WIP
6+

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Jest CodeRoad (WIP)
2+
3+
[Atom-CodeRoad](https://github.com/coderoad/atom-coderoad) Javascript test runner & reporter.
4+
5+
6+

package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "jest-coderoad",
3+
"version": "0.1.0",
4+
"description": "jest test runner for coderoad",
5+
"main": "lib/index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/coderoad/jest-coderoad.git"
12+
},
13+
"keywords": [
14+
"coderoad",
15+
"jest"
16+
],
17+
"author": "Shawn McKay <[email protected]>",
18+
"license": "ISC",
19+
"bugs": {
20+
"url": "https://github.com/coderoad/jest-coderoad/issues"
21+
},
22+
"homepage": "https://github.com/coderoad/jest-coderoad#readme"
23+
}

src/index.ts

Whitespace-only changes.

tsconfig.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES5",
4+
"module": "commonjs",
5+
"declaration": false,
6+
"noImplicitAny": false,
7+
"removeComments": true,
8+
"noEmit": false,
9+
"outDir": "lib"
10+
},
11+
"compileOnSave": true,
12+
"buildOnSave": true,
13+
"filesGlob": [
14+
"src/*.ts",
15+
"src/**/*.ts",
16+
"src/typings/**/*.d.ts"
17+
],
18+
"files": [
19+
],
20+
"exclude": [
21+
"node_modules"
22+
],
23+
"atom": {
24+
"rewriteTsconfig": true
25+
}
26+
}

tslint.json

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{
2+
"rules": {
3+
"class-name": true,
4+
"comment-format": [true, "check-space"],
5+
"curly": true,
6+
"eofline": true,
7+
"forin": true,
8+
"indent": [true, "spaces"],
9+
"label-position": true,
10+
"label-undefined": true,
11+
"max-line-length": [true, 140],
12+
"member-ordering": [true,
13+
"public-before-private",
14+
"static-before-instance",
15+
"variables-before-functions"
16+
],
17+
"no-arg": true,
18+
"no-bitwise": true,
19+
"no-console": [true,
20+
"debug",
21+
"info",
22+
"time",
23+
"timeEnd",
24+
"trace"
25+
],
26+
"no-construct": true,
27+
"no-debugger": true,
28+
"no-duplicate-key": false,
29+
"no-duplicate-variable": true,
30+
"no-empty": true,
31+
"no-eval": true,
32+
"no-shadowed-variable": true,
33+
"no-string-literal": true,
34+
"no-switch-case-fall-through": true,
35+
"no-trailing-whitespace": true,
36+
"no-unused-expression": true,
37+
"no-unused-variable": true,
38+
"no-unreachable": true,
39+
"no-use-before-declare": true,
40+
"no-var-keyword": false,
41+
"one-line": [true,
42+
"check-open-brace",
43+
"check-catch",
44+
"check-else",
45+
"check-finally",
46+
"check-whitespace"
47+
],
48+
"quotemark": [true, "single"],
49+
"radix": true,
50+
"semicolon": true,
51+
"triple-equals": [true, "allow-null-check"],
52+
"variable-name": false,
53+
"whitespace": [true,
54+
"check-branch",
55+
"check-decl",
56+
"check-operator",
57+
"check-separator",
58+
"check-type"
59+
]
60+
}
61+
}

0 commit comments

Comments
 (0)