Skip to content

Commit

Permalink
Merge pull request #12 from vrockai/tslintRelax
Browse files Browse the repository at this point in the history
tslint.json fixed for more relaxed development
  • Loading branch information
mtho11 committed Feb 19, 2015
2 parents ea74189 + 7d4b2ca commit 493b39e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 27 deletions.
30 changes: 13 additions & 17 deletions plugins/alerts/tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,15 @@
"no-arg": true,
"no-bitwise": true,
"no-console": [true,
"debug",
"info",
"time",
"timeEnd",
"trace"
"trace"
],
"no-construct": true,
"no-debugger": true,
"no-debugger": false,
"no-duplicate-key": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-string-literal": true,
"no-string-literal": false,
"no-switch-case-fall-through": true,
"no-trailing-comma": true,
"_no-trailing-whitespace": true,
Expand All @@ -32,22 +28,22 @@
"no-unreachable": true,
"no-use-before-declare": true,
"one-line": [true,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"_quotemark": [true, "double"],
"radix": true,
"semicolon": true,
"triple-equals": [true, "allow-null-check"],
"variable-name": false,
"whitespace": [true,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"_check-type"
"whitespace": [false,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"_check-type"
],
"license-header": [ true,
"/// Copyright 2014-2015 Red Hat, Inc. and/or its affiliates\n/// and other contributors as indicated by the @author tags.\n///\n/// Licensed under the Apache License, Version 2.0 (the \"License\");\n/// you may not use this file except in compliance with the License.\n/// You may obtain a copy of the License at\n///\n/// http://www.apache.org/licenses/LICENSE-2.0\n///\n/// Unless required by applicable law or agreed to in writing, software\n/// distributed under the License is distributed on an \"AS IS\" BASIS,\n/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n/// See the License for the specific language governing permissions and\n/// limitations under the License.\n"
Expand Down
20 changes: 10 additions & 10 deletions plugins/inventory/tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"no-arg": true,
"no-bitwise": true,
"no-console": [true,
"trace"
"trace"
],
"no-construct": true,
"no-debugger": false,
Expand All @@ -28,22 +28,22 @@
"no-unreachable": true,
"no-use-before-declare": true,
"one-line": [true,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"_quotemark": [true, "double"],
"radix": true,
"semicolon": true,
"triple-equals": [true, "allow-null-check"],
"variable-name": false,
"whitespace": [false,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"_check-type"
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"_check-type"
],
"license-header": [ true,
"/// Copyright 2014-2015 Red Hat, Inc. and/or its affiliates\n/// and other contributors as indicated by the @author tags.\n///\n/// Licensed under the Apache License, Version 2.0 (the \"License\");\n/// you may not use this file except in compliance with the License.\n/// You may obtain a copy of the License at\n///\n/// http://www.apache.org/licenses/LICENSE-2.0\n///\n/// Unless required by applicable law or agreed to in writing, software\n/// distributed under the License is distributed on an \"AS IS\" BASIS,\n/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n/// See the License for the specific language governing permissions and\n/// limitations under the License.\n"
Expand Down

0 comments on commit 493b39e

Please sign in to comment.