This repository was archived by the owner on Feb 8, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 19 files changed +5093
-7246
lines changed Expand file tree Collapse file tree 19 files changed +5093
-7246
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,12 @@ engines:
9
9
checks :
10
10
Similar code :
11
11
enabled : false
12
+
12
13
ratings :
13
14
paths :
14
- - src/**
15
+ - src/**/*.js
16
+
15
17
exclude_paths :
16
- - test.js
18
+ - src/cli.js
19
+ - test/**/*.js
20
+ - config/**/*.js
Original file line number Diff line number Diff line change @@ -9,4 +9,3 @@ insert_final_newline = true
9
9
10
10
[* .md ]
11
11
trim_trailing_whitespace = false
12
- insert_final_newline = false
Original file line number Diff line number Diff line change @@ -4,18 +4,26 @@ _gh_pages
4
4
node_modules
5
5
jspm_packages
6
6
bower_components
7
- components
8
7
vendor
9
8
build
10
9
dest
10
+ dist
11
11
lib-cov
12
12
coverage
13
13
.nyc_output
14
14
nbproject
15
15
cache
16
16
temp
17
17
tmp
18
- benchmark
18
+
19
+ # npm >=5 lock file, we use Yarn!
20
+ package-lock.json
21
+
22
+ # Typescript v1 declaration files
23
+ typings /
24
+
25
+ # Optional npm cache directory
26
+ .npm
19
27
20
28
# Packages #
21
29
# ##########
@@ -27,17 +35,29 @@ benchmark
27
35
* .tar
28
36
* .zip
29
37
38
+ # node-waf configuration
39
+ .lock-wscript
40
+
30
41
# OS, Logs and databases #
31
42
# #########################
32
43
logs
33
- * .pid
34
- * .dat
35
44
* .log
45
+ npm-debug.log *
46
+ npm-debug.log *
47
+ yarn-debug.log *
48
+ yarn-error.log *
49
+ * .dat
36
50
* .sql
37
51
* .sqlite
38
52
* ~
39
53
~ *
40
54
55
+ # Runtime data
56
+ pids
57
+ * .pid
58
+ * .seed
59
+ * .pid.lock
60
+
41
61
# Editors
42
62
* .idea
43
63
48
68
Thumbs.db
49
69
ehthumbs.db
50
70
Desktop.ini
51
- npm-debug.log
52
71
.directory
53
72
._ *
54
73
lcov.info
59
78
* .seed
60
79
* .pid.lock
61
80
62
- # Grunt intermediate storage
63
- # see here: http://gruntjs.com/creating-plugins#storing-task-files
64
- .grunt
65
-
66
81
# Optional npm cache directory
67
82
.npm
68
83
69
84
# Optional REPL history
70
85
.node_repl_history
86
+
87
+ # Optional eslint cache
88
+ .eslintcache
89
+
90
+ # Yarn Integrity file
91
+ .yarn-integrity
92
+
93
+ # dotenv environment variables file
94
+ .env
Original file line number Diff line number Diff line change 1
1
{
2
2
"extends" : [
3
3
" standard-tunnckocore"
4
- ]
4
+ ],
5
+ "rules" : {
6
+ "react/react-in-jsx-scope" : " off"
7
+ }
5
8
}
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ _gh_pages
4
4
node_modules
5
5
jspm_packages
6
6
bower_components
7
- components
8
7
vendor
9
8
build
10
9
dest
10
+ dist
11
11
lib-cov
12
12
coverage
13
13
.nyc_output
16
16
temp
17
17
tmp
18
18
19
+ # npm >=5 lock file, we use Yarn!
20
+ package-lock.json
21
+
22
+ # Typescript v1 declaration files
23
+ typings /
24
+
25
+ # Optional npm cache directory
26
+ .npm
27
+
19
28
# Packages #
20
29
# ##########
21
30
* .7z
26
35
* .tar
27
36
* .zip
28
37
38
+ # node-waf configuration
39
+ .lock-wscript
40
+
29
41
# OS, Logs and databases #
30
42
# #########################
31
43
logs
32
- * .pid
33
- * .dat
34
44
* .log
45
+ npm-debug.log *
46
+ npm-debug.log *
47
+ yarn-debug.log *
48
+ yarn-error.log *
49
+ * .dat
35
50
* .sql
36
51
* .sqlite
37
52
* ~
38
53
~ *
39
54
55
+ # Runtime data
56
+ pids
57
+ * .pid
58
+ * .seed
59
+ * .pid.lock
60
+
40
61
# Editors
41
62
* .idea
42
63
@@ -47,24 +68,27 @@ Icon?
47
68
Thumbs.db
48
69
ehthumbs.db
49
70
Desktop.ini
50
- npm-debug.log
51
71
.directory
52
72
._ *
53
73
lcov.info
54
- yarn.lock
55
74
56
75
# Runtime data
57
76
pids
58
77
* .pid
59
78
* .seed
60
79
* .pid.lock
61
80
62
- # Grunt intermediate storage
63
- # see here: http://gruntjs.com/creating-plugins#storing-task-files
64
- .grunt
65
-
66
81
# Optional npm cache directory
67
82
.npm
68
83
69
84
# Optional REPL history
70
85
.node_repl_history
86
+
87
+ # Optional eslint cache
88
+ .eslintcache
89
+
90
+ # Yarn Integrity file
91
+ .yarn-integrity
92
+
93
+ # dotenv environment variables file
94
+ .env
Original file line number Diff line number Diff line change
1
+ {
2
+ "presets" : " tunnckocore" ,
3
+ "tasks" : {
4
+ "build" : [
5
+ " hela clean" ,
6
+ " hela build:node"
7
+ ]
8
+ }
9
+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
{
2
- "check-coverage" : true ,
3
2
"statements" : 100 ,
4
3
"functions" : 100 ,
5
- "branches" : 98.25 ,
6
- "lines" : 100
4
+ "branches" : 100 ,
5
+ "lines" : 100 ,
6
+ "exclude" : [
7
+ " dist"
8
+ ]
7
9
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "tabWidth": 2,
3
+ "printWidth": 80,
4
+ "semi": false,
5
+ "useTabs": false,
6
+ "singleQuote": true,
7
+ "trailingComma": "es5",
8
+ "bracketSpacing": true,
9
+ "jsxBracketSameLine": true,
10
+ "parser": "babylon"
11
+ }
Original file line number Diff line number Diff line change 1
1
sudo : false
2
2
language : node_js
3
3
4
+ notifications :
5
+ email : false
6
+
4
7
cache :
8
+ yarn : true
5
9
directories :
6
10
- node_modules
7
11
8
- notifications :
9
- email : false
10
-
11
12
node_js :
12
13
- ' 8'
13
14
- ' 6'
14
15
16
+ os : linux
17
+
15
18
before_install :
16
- - npm install --global npm@latest
19
+ - curl -o- -L https://yarnpkg.com/install.sh | bash
20
+ - export PATH=$HOME/.yarn/bin:$PATH
17
21
18
- before_script :
19
- - npm prune
22
+ script : yarn test
20
23
21
24
after_success :
22
- - npm run semantic- release
25
+ - yarn start release
23
26
- bash <(curl -s https://codecov.io/bash)
24
27
25
28
branches :
You can’t perform that action at this time.
0 commit comments