Skip to content

Commit

Permalink
Merge branch 'release/v0.6.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelBinpar committed May 26, 2020
2 parents 0b19975 + 782738c commit 64085e1
Show file tree
Hide file tree
Showing 35 changed files with 14,741 additions and 6,128 deletions.
24 changes: 21 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"@typescript-eslint"
],
"extends": [
"airbnb",
// "airbnb",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
Expand Down Expand Up @@ -42,6 +42,26 @@
"no-plusplus": "off",
"no-underscore-dangle": "off",
"import/extensions": "off",
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "default",
"format": ["camelCase"]
},
{
"selector": "variable",
"format": ["camelCase", "UPPER_CASE"]
},
{
"selector": "parameter",
"format": ["camelCase"],
"leadingUnderscore": "allow"
},
{
"selector": "typeLike",
"format": ["PascalCase"]
}
],
"@typescript-eslint/explicit-member-accessibility": [
"error",
{ "overrides": { "constructors": "no-public" } }
Expand All @@ -50,8 +70,6 @@
"@typescript-eslint/adjacent-overload-signatures": "error",
"@typescript-eslint/array-type": "error",
"@typescript-eslint/ban-types": "error",
"@typescript-eslint/camelcase": "error",
"@typescript-eslint/class-name-casing": "error",
"@typescript-eslint/consistent-type-definitions": "error",
"@typescript-eslint/explicit-function-return-type": "error",
"@typescript-eslint/member-delimiter-style": "error",
Expand Down
8 changes: 8 additions & 0 deletions .snyk
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
version: v1.14.1
ignore: {}
# patches apply the minimum changes required to fix a vulnerability
patch:
SNYK-JS-LODASH-567746:
- '@a2r/telemetry > winston > async > lodash':
patched: '2020-05-26T08:00:29.942Z'
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# A2R Server

[![Build Status](https://travis-ci.org/acttoreact/server.svg?branch=master)](https://travis-ci.org/acttoreact/server) [![Coverage Status](https://coveralls.io/repos/github/acttoreact/server/badge.svg?branch=master)](https://coveralls.io/github/acttoreact/server) [![Snyk Vulnerabilities for GitHub Repo](https://img.shields.io/snyk/vulnerabilities/github/acttoreact/server)](https://snyk.io/test/github/acttoreact/server) [![Docker Image Version (latest by date)](https://img.shields.io/docker/v/act2react/server?sort=date)](https://hub.docker.com/r/act2react/server) [![Docker Image Size (latest by date)](https://img.shields.io/docker/image-size/act2react/server?sort=date)](https://hub.docker.com/r/act2react/server) [![GitHub](https://img.shields.io/github/license/acttoreact/server)](https://github.com/acttoreact/server/blob/develop/license.md) [![Documentation](https://img.shields.io/badge/documentation-ready-green)](https://htmlpreview.github.io/?https://github.com/acttoreact/server/blob/develop/docs/jsdocs/index.html#readDir)

A2R application logic and runtime server
Loading

0 comments on commit 64085e1

Please sign in to comment.