From 2f29c9835d4412975a82ca0f5575364d5efaa475 Mon Sep 17 00:00:00 2001 From: Marcello Barile Date: Wed, 16 Mar 2022 14:24:05 +0100 Subject: [PATCH] bumped ver due to bad publish --- package-lock.json | 4 +-- package.json | 2 +- tslint.json | 65 +++++++++++++++++++++++++++++++++-------------- 3 files changed, 49 insertions(+), 22 deletions(-) diff --git a/package-lock.json b/package-lock.json index 04e2493..b1e4bb7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "atlasgql", - "version": "1.0.0", + "version": "1.0.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "atlasgql", - "version": "1.0.0", + "version": "1.0.2", "license": "MIT", "dependencies": { "@gql2ts/from-schema": "^2.0.0-4", diff --git a/package.json b/package.json index 1b99afe..6e90aee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "atlasgql", - "version": "1.0.1", + "version": "1.0.2", "description": "A self-composing GraphQL server library using TypeScript, Express and Apollo Server", "private": false, "directories": { diff --git a/tslint.json b/tslint.json index 7480b9c..c0d882e 100644 --- a/tslint.json +++ b/tslint.json @@ -1,33 +1,47 @@ { "extends": "tslint:latest", "linterOptions": { - "exclude": [ - "bin/**", - "build/**", - "config/**", - "graphql/**", - "interfaces/**", - "typings/**", - "__tests__/**", - "**/*.d.ts", - "**/*.spec.ts" - ] + "exclude": [ + "bin/**", + "build/**", + "config/**", + "graphql/**", + "interfaces/**", + "typings/**", + "__tests__/**", + "**/*.d.ts", + "**/*.spec.ts" + ] }, "rules": { "ordered-imports": false, "object-literal-sort-keys": false, "no-console": false, - "align": [true, "parameters", "arguments", "statements"], + "align": [ + true, + "parameters", + "arguments", + "statements" + ], "ban": false, "class-name": true, - "comment-format": [true, "check-space"], + "comment-format": [ + true, + "check-space" + ], "curly": true, "eofline": false, "forin": true, - "indent": [true, "spaces"], + "indent": [ + true, + "spaces" + ], "jsdoc-format": true, "label-position": true, - "max-line-length": [true, 120], + "max-line-length": [ + true, + 120 + ], "max-classes-per-file": false, "member-ordering": [ true, @@ -68,13 +82,26 @@ "check-open-brace", "check-whitespace" ], - "quotemark": [true, "single"], + "quotemark": [ + true, + "single" + ], "radix": true, - "semicolon": [true, "always"], + "semicolon": [ + true, + "always" + ], "switch-default": true, "trailing-comma": false, - "triple-equals": [true, "allow-null-check"], - "typedef": [true, "parameter", "property-declaration"], + "triple-equals": [ + true, + "allow-null-check" + ], + "typedef": [ + true, + "parameter", + "property-declaration" + ], "typedef-whitespace": [ true, {