Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
Merge branch 'next'
Browse files Browse the repository at this point in the history
# Conflicts:
#	.github/CODE_OF_CONDUCT.md
#	README.md
  • Loading branch information
fox1t committed Sep 27, 2019
2 parents cf77c01 + cbc815b commit fbfb9f3
Show file tree
Hide file tree
Showing 267 changed files with 613 additions and 17,907 deletions.
7 changes: 0 additions & 7 deletions .dockerignore

This file was deleted.

11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
end_of_line = lf
# editorconfig-tools is unable to ignore longs strings or urls
max_line_length = 100
30 changes: 0 additions & 30 deletions .eslintrc

This file was deleted.

15 changes: 15 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: './',
// TODO: we need this because of an issue with @typescript-eslint/parser: https://github.com/typescript-eslint/typescript-eslint/issues/864
createDefaultProgram: true,
},
extends: ['plugin:@typescript-eslint/recommended', 'prettier', 'prettier/@typescript-eslint'],
plugins: ['@typescript-eslint'],
rules: {
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
}
2 changes: 0 additions & 2 deletions .gitattributes

This file was deleted.

79 changes: 47 additions & 32 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,49 +1,64 @@
node_modules
/config.js

public

.jshintrc

rebuild.sh
# Logs
logs
*.log
npm-debug.log*
.idea

data/elasticsearch/*
data/couchdb/*
data/nginx/*
# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

hospitalrun.crt
# Coverage directory used by tools like istanbul
coverage

hospitalrun.key
# nyc test coverage
.nyc_output

privatekey.pem
# Grunt intermediate storage (http:https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

certrequest.csr
# node-waf configuration
.lock-wscript

certificate.pem
# Compiled binary addons (http:https://nodejs.org/api/addons.html)
build/Release

restart.sh
# Dependency directories
node_modules
jspm_packages

cloudformation
# Optional npm cache directory
.npm

Dockerrun.aws.json
# Optional REPL history
.node_repl_history

start.sh
# 0x
profile-*

!conf/polyclinic/start.sh
# mac files
.DS_Store

stop.sh
# vim swap files
*.swp

newrelic_agent.log
# webstorm
.idea

newrelic.js
# vscode
.vscode
*code-workspace

.idea
# clinic
profile*
*clinic*
*flamegraph*

# Elastic Beanstalk Files
.elasticbeanstalk/*
!.elasticbeanstalk/*.cfg.yml
!.elasticbeanstalk/config.yml
build/*
*.old
.DS_Store
# generated code
examples/typescript-server.js
package-lock.json
dist
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
save-prefix='~'
11 changes: 11 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"printWidth": 100,
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid",
"parser": "typescript"
}
12 changes: 12 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
["@semantic-release/git", {
"assets": ["package.json", "CHANGELOG.md"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}],
"@semantic-release/github"
]
}
32 changes: 32 additions & 0 deletions .travis-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
language: node_js

node_js:
- "12"
- "10"
- "8"

branches:
only:
- master

install:
- travis_retry npm install

before_script:
- npm run lint
script:
- npm run build
after_ script:
- npm run test

jobs:
include:
- stage: release
node_js: lts/*
script:
- npm run semantic-release

notifications:
email:
on_success: never
on_failure: always
29 changes: 0 additions & 29 deletions .travis.yml

This file was deleted.

25 changes: 0 additions & 25 deletions Dockerfile

This file was deleted.

Loading

0 comments on commit fbfb9f3

Please sign in to comment.