Skip to content

Commit

Permalink
Housekeeping and CI Integration
Browse files Browse the repository at this point in the history
  • Loading branch information
obany committed Aug 10, 2017
1 parent 5267675 commit 94734b9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# v0.7.3
* Housekeeping and CI Integration

# v0.7.2
* Housekeeping and CI Integration

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "unitejs-framework",
"version": "0.7.2",
"version": "0.7.3",
"description": "Common framework for UniteJS",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand All @@ -27,7 +27,7 @@
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"chai": "^4.1.0",
"chai": "^4.1.1",
"coveralls": "^2.13.1",
"del": "^3.0.0",
"gulp": "^3.9.1",
Expand All @@ -36,12 +36,12 @@
"gulp-mocha": "3.0.0",
"gulp-replace": "^0.6.1",
"gulp-sourcemaps": "^2.6.0",
"gulp-tslint": "^8.1.1",
"gulp-tslint": "^8.1.2",
"gulp-typescript": "^3.2.1",
"merge2": "^1.1.0",
"remap-istanbul": "^0.9.5",
"run-sequence": "^2.0.0",
"tslint": "^5.5.0",
"tslint": "^5.6.0",
"tslint-microsoft-contrib": "^5.0.1",
"typescript": "^2.4.1"
},
Expand Down
7 changes: 4 additions & 3 deletions tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"no-any": false,
"no-arg": true,
"no-backbone-get-set-outside-model": true,
"no-bitwise": true,
"no-bitwise": false,
"no-conditional-assignment": true,
"no-console": [true, "debug", "info", "log", "time", "timeEnd", "trace"],
"no-constant-condition": true,
Expand Down Expand Up @@ -148,14 +148,14 @@
"no-var-keyword": true,
"no-var-requires": true,
"no-var-self": true,
"no-void-expression": true,
"no-void-expression": false,
"object-literal-sort-keys": false, // turn object-literal-sort-keys off and sort keys in a meaningful manner
"one-variable-per-declaration": [true],
"only-arrow-functions": [false], // there are many valid reasons to declare a function
"ordered-imports": [true],
"prefer-array-literal": true,
"prefer-const": true,
"prefer-for-of": true,
"prefer-for-of": false,
"prefer-method-signature": true,
"prefer-template": true,
"return-undefined": false, // this actually affect the readability of the code
Expand Down Expand Up @@ -236,6 +236,7 @@
"prefer-function-over-method": false,
"prefer-conditional-expression": false,
"strict-type-predicates": false,
"no-submodule-imports": false,

/**
* Deprecated rules. The following rules are deprecated for various reasons.
Expand Down

0 comments on commit 94734b9

Please sign in to comment.