Skip to content

Commit b57bf43

Browse files
authored
Merge pull request #5 from Goodluckhf/greenkeeper/initial
Update dependencies to enable Greenkeeper 🌴
2 parents b5491e8 + e4ef52b commit b57bf43

File tree

4 files changed

+265
-283
lines changed

4 files changed

+265
-283
lines changed

.eslintrc.js

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module.exports = {
22
parser: '@typescript-eslint/parser',
3+
plugins: ['@typescript-eslint'],
34
extends: [
45
'eslint-config-airbnb-base',
56
'plugin:@typescript-eslint/recommended',
@@ -10,13 +11,17 @@ module.exports = {
1011
parserOptions: {
1112
ecmaVersion: 2018,
1213
sourceType: 'module',
14+
project: './tsconfig.json',
1315
},
1416
rules: {
15-
'@typescript-eslint/no-parameter-properties': {
16-
allows: ['private readonly'],
17-
},
17+
'@typescript-eslint/no-parameter-properties': [
18+
'error',
19+
{
20+
allows: ['private readonly'],
21+
},
22+
],
1823
'@typescript-eslint/explicit-function-return-type': 'off',
19-
'@typescript-eslint/interface-name-prefix': 'always',
24+
'@typescript-eslint/interface-name-prefix': 'off',
2025
'@typescript-eslint/no-unused-vars': 'error',
2126
'import/prefer-default-export': 'off',
2227
'no-useless-constructor': 'off',

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Declarative and simple IoC container for node.js applications
33

44
![Travis](https://img.shields.io/travis/Goodluckhf/IoC-container/master.svg?style=flat-square)
5-
[![Coverage Status](https://coveralls.io/repos/github/Goodluckhf/IoC-container/badge.svg?branch=master)](https://coveralls.io/github/Goodluckhf/IoC-container?branch=master)
5+
[![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/)
66
![node](https://img.shields.io/node/v/@ukitgroup/ioc.svg?style=flat-square)
77
![npm](https://img.shields.io/npm/v/@ukitgroup/ioc.svg?style=flat-square)
88

0 commit comments

Comments
 (0)