Skip to content

Commit

Permalink
bumped ver due to bad publish
Browse files Browse the repository at this point in the history
  • Loading branch information
marcellobarile committed Mar 16, 2022
1 parent 510b0b8 commit 2f29c98
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 22 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
65 changes: 46 additions & 19 deletions tslint.json
Original file line number Diff line number Diff line change
@@ -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,
Expand Down Expand Up @@ -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,
{
Expand Down

0 comments on commit 2f29c98

Please sign in to comment.