Skip to content

Commit

Permalink
Merge pull request #205 from apollostack/greenkeeper-tslint-4.0.1
Browse files Browse the repository at this point in the history
Update tslint to version 4.0.1 馃殌
  • Loading branch information
Sashko Stubailo committed Nov 23, 2016
2 parents 855fe03 + 0734adb commit 378de05
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"request-promise": "^4.1.0",
"source-map-support": "^0.4.2",
"standard-version": "^3.0.0",
"tslint": "^3.15.1",
"tslint": "^4.0.1",
"typescript": "2.0.10"
}
}
2 changes: 0 additions & 2 deletions src/autopublish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import {
import { PubSub } from 'graphql-subscriptions';
import { chainResolvers } from './schemaGenerator';



export function autopublishMutationResults(schema: GraphQLSchema, pubsub: PubSub) {
// decorate the mutations with your thingy
const mutationFields = schema.getMutationType().getFields();
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"suppressImplicitAnyIndexErrors": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"noUnusedLocals": true,
"sourceMap": true,
"declaration": true,
"rootDir": "./src",
Expand Down
15 changes: 2 additions & 13 deletions tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
"interface-name": false,
"jsdoc-format": true,
"label-position": true,
"label-undefined": true,
"max-line-length": [
true,
140
Expand All @@ -45,9 +44,8 @@
"trace"
],
"no-construct": true,
"no-constructor-vars": true,
"no-parameter-properties": true,
"no-debugger": true,
"no-duplicate-key": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
Expand All @@ -58,9 +56,7 @@
"no-shadowed-variable": true,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
"no-unreachable": true,
"no-unused-expression": true,
"no-unused-variable": true,
"no-use-before-declare": false,
"no-var-keyword": true,
"object-literal-sort-keys": false,
Expand All @@ -84,11 +80,7 @@
],
"switch-default": true,
"trailing-comma": [
true,
{
"multiline": "always",
"singleline": "never"
}
false
],
"triple-equals": [
true,
Expand Down Expand Up @@ -120,9 +112,6 @@
"variable-declaration": "space"
}
],
"use-strict": [
false
],
"variable-name": [
true,
"check-format",
Expand Down

0 comments on commit 378de05

Please sign in to comment.