Skip to content

Commit

Permalink
Merge pull request #5 from Goodluckhf/greenkeeper/initial
Browse files Browse the repository at this point in the history
Update dependencies to enable Greenkeeper 🌴
  • Loading branch information
Goodluckhf authored Jul 8, 2019
2 parents b5491e8 + e4ef52b commit b57bf43
Show file tree
Hide file tree
Showing 4 changed files with 265 additions and 283 deletions.
13 changes: 9 additions & 4 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
extends: [
'eslint-config-airbnb-base',
'plugin:@typescript-eslint/recommended',
Expand All @@ -10,13 +11,17 @@ module.exports = {
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
project: './tsconfig.json',
},
rules: {
'@typescript-eslint/no-parameter-properties': {
allows: ['private readonly'],
},
'@typescript-eslint/no-parameter-properties': [
'error',
{
allows: ['private readonly'],
},
],
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/interface-name-prefix': 'always',
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/no-unused-vars': 'error',
'import/prefer-default-export': 'off',
'no-useless-constructor': 'off',
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Declarative and simple IoC container for node.js applications

![Travis](https://img.shields.io/travis/Goodluckhf/IoC-container/master.svg?style=flat-square)
[![Coverage Status](https://coveralls.io/repos/github/Goodluckhf/IoC-container/badge.svg?branch=master)](https://coveralls.io/github/Goodluckhf/IoC-container?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/Goodluckhf/IoC-container/badge.svg?branch=master)](https://coveralls.io/github/Goodluckhf/IoC-container?branch=master) [![Greenkeeper badge](https://badges.greenkeeper.io/Goodluckhf/IoC-container.svg)](https://greenkeeper.io/)
![node](https://img.shields.io/node/v/@ukitgroup/ioc.svg?style=flat-square)
![npm](https://img.shields.io/npm/v/@ukitgroup/ioc.svg?style=flat-square)

Expand Down
Loading

0 comments on commit b57bf43

Please sign in to comment.