Auto stash before merge of "master" and "origin/master"

This commit is contained in:
Kamil Myśliwiec 2017-09-13 12:57:16 +02:00
parent cb10786666
commit 10352360d9
2 changed files with 55 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[![Nest Logo](http://kamilmysliwiec.com/public/nest-logo.png)](http://kamilmysliwiec.com/)
[![Nest Logo](http://kamilmysliwiec.com/public/nest-logo.png)](http://nestjs.com/)
<img src="https://github.com/remojansen/logo.ts/blob/master/ts.png?raw=true" width="18"> TypeScript Starter repository for [Nest](https://github.com/kamilmysliwiec/nest) framework.
The [Nest](https://github.com/kamilmysliwiec/nest) framework starter repository.
## Installation

53
tslint.json Normal file
View File

@ -0,0 +1,53 @@
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {
"no-unused-expression": true
},
"rules": {
"eofline": false,
"quotemark": [
true,
"single"
],
"member-access": [
false
],
"ordered-imports": [
false
],
"max-line-length": [
150
],
"member-ordering": [
false
],
"curly": false,
"interface-name": [
false
],
"array-type": [
false
],
"no-empty-interface": false,
"no-empty": false,
"arrow-parens": false,
"object-literal-sort-keys": false,
"no-unused-expression": false,
"max-classes-per-file": [
false
],
"variable-name": [
false
],
"one-line": [
false
],
"one-variable-per-declaration": [
false
]
},
"rulesDirectory": []
}