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:
99 checks :
1010 Similar code :
1111 enabled : false
12+
1213ratings :
1314 paths :
14- - src/**
15+ - src/**/*.js
16+
1517exclude_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
99
1010[* .md ]
1111trim_trailing_whitespace = false
12- insert_final_newline = false
Original file line number Diff line number Diff line change @@ -4,18 +4,26 @@ _gh_pages
44node_modules
55jspm_packages
66bower_components
7- components
87vendor
98build
109dest
10+ dist
1111lib-cov
1212coverage
1313.nyc_output
1414nbproject
1515cache
1616temp
1717tmp
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
1927
2028# Packages #
2129# ##########
@@ -27,17 +35,29 @@ benchmark
2735* .tar
2836* .zip
2937
38+ # node-waf configuration
39+ .lock-wscript
40+
3041# OS, Logs and databases #
3142# #########################
3243logs
33- * .pid
34- * .dat
3544* .log
45+ npm-debug.log *
46+ npm-debug.log *
47+ yarn-debug.log *
48+ yarn-error.log *
49+ * .dat
3650* .sql
3751* .sqlite
3852* ~
3953~ *
4054
55+ # Runtime data
56+ pids
57+ * .pid
58+ * .seed
59+ * .pid.lock
60+
4161# Editors
4262* .idea
4363
4868Thumbs.db
4969ehthumbs.db
5070Desktop.ini
51- npm-debug.log
5271.directory
5372._ *
5473lcov.info
5978* .seed
6079* .pid.lock
6180
62- # Grunt intermediate storage
63- # see here: http://gruntjs.com/creating-plugins#storing-task-files
64- .grunt
65-
6681# Optional npm cache directory
6782.npm
6883
6984# Optional REPL history
7085.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 11{
22 "extends" : [
33 " standard-tunnckocore"
4- ]
4+ ],
5+ "rules" : {
6+ "react/react-in-jsx-scope" : " off"
7+ }
58}
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ _gh_pages
44node_modules
55jspm_packages
66bower_components
7- components
87vendor
98build
109dest
10+ dist
1111lib-cov
1212coverage
1313.nyc_output
1616temp
1717tmp
1818
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+
1928# Packages #
2029# ##########
2130* .7z
2635* .tar
2736* .zip
2837
38+ # node-waf configuration
39+ .lock-wscript
40+
2941# OS, Logs and databases #
3042# #########################
3143logs
32- * .pid
33- * .dat
3444* .log
45+ npm-debug.log *
46+ npm-debug.log *
47+ yarn-debug.log *
48+ yarn-error.log *
49+ * .dat
3550* .sql
3651* .sqlite
3752* ~
3853~ *
3954
55+ # Runtime data
56+ pids
57+ * .pid
58+ * .seed
59+ * .pid.lock
60+
4061# Editors
4162* .idea
4263
@@ -47,24 +68,27 @@ Icon?
4768Thumbs.db
4869ehthumbs.db
4970Desktop.ini
50- npm-debug.log
5171.directory
5272._ *
5373lcov.info
54- yarn.lock
5574
5675# Runtime data
5776pids
5877* .pid
5978* .seed
6079* .pid.lock
6180
62- # Grunt intermediate storage
63- # see here: http://gruntjs.com/creating-plugins#storing-task-files
64- .grunt
65-
6681# Optional npm cache directory
6782.npm
6883
6984# Optional REPL history
7085.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 11{
2- "check-coverage" : true ,
32 "statements" : 100 ,
43 "functions" : 100 ,
5- "branches" : 98.25 ,
6- "lines" : 100
4+ "branches" : 100 ,
5+ "lines" : 100 ,
6+ "exclude" : [
7+ " dist"
8+ ]
79}
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 11sudo : false
22language : node_js
33
4+ notifications :
5+ email : false
6+
47cache :
8+ yarn : true
59 directories :
610 - node_modules
711
8- notifications :
9- email : false
10-
1112node_js :
1213 - ' 8'
1314 - ' 6'
1415
16+ os : linux
17+
1518before_install :
16- - npm install --global npm@latest
19+ - curl -o- -L https://yarnpkg.com/install.sh | bash
20+ - export PATH=$HOME/.yarn/bin:$PATH
1721
18- before_script :
19- - npm prune
22+ script : yarn test
2023
2124after_success :
22- - npm run semantic- release
25+ - yarn start release
2326 - bash <(curl -s https://codecov.io/bash)
2427
2528branches :
You can’t perform that action at this time.
0 commit comments