Skip to content

Commit bcd69a8

Browse files
authored
Upgrade v0.7.1
* updated packages * added badge
1 parent e54e4c6 commit bcd69a8

7 files changed

Lines changed: 4031 additions & 2636 deletions

File tree

.eslintrc.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
module.exports = {
2+
root: true,
3+
parser: '@typescript-eslint/parser',
4+
plugins: [
5+
'@typescript-eslint',
6+
],
7+
parserOptions: {
8+
"project": "tsconfig.json",
9+
"sourceType": "module"
10+
},
11+
extends: [
12+
'eslint:recommended',
13+
'plugin:@typescript-eslint/recommended',
14+
],
15+
rules: {
16+
'@typescript-eslint/no-var-requires': "off",
17+
"@typescript-eslint/no-explicit-any": "off"
18+
}
19+
};

.travis.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# RxStack Skeleton Application
22

3+
[![Node.js CI](https://github.com/rxstack/skeleton/actions/workflows/node.js.yml/badge.svg)](https://github.com/rxstack/skeleton/actions/workflows/node.js.yml)
34
[![Maintainability](https://api.codeclimate.com/v1/badges/f6e90ec8ea970b424179/maintainability)](https://codeclimate.com/github/rxstack/skeleton/maintainability)
45
[![Test Coverage](https://api.codeclimate.com/v1/badges/f6e90ec8ea970b424179/test_coverage)](https://codeclimate.com/github/rxstack/skeleton/test_coverage)
5-
[![Build Status](https://travis-ci.org/rxstack/skeleton.svg?branch=master)](https://travis-ci.org/rxstack/skeleton)
66

77
> a fully-functional skeleton application that you can use for your new applications.
88
@@ -43,4 +43,4 @@ For more details please visit the [official documentations](https://github.com/r
4343

4444
## License
4545

46-
Licensed under the [MIT license](LICENSE).
46+
Licensed under the [MIT license](LICENSE).

0 commit comments

Comments
 (0)