@cknow/tslint-config
Advanced tools
Comparing version 3.2.0 to 3.3.0
@@ -1,1 +0,96 @@ | ||
{"name":"@cknow/tslint-config","version":"3.2.0","description":"TSLint shareable config","keywords":["tslint","tslint-config","tslint-rules","typescript","config","code","quality","style","lint","linter","validate","code style","standard","strict","check","checker","verify","enforce"],"homepage":"https://github.com/cknow/tslint-config","bugs":{"url":"https://github.com/cknow/tslint-config/issues","email":"ricardo@clicknow.com.br"},"license":"MIT","author":{"name":"Ricardo Gobbo de Souza","email":"ricardogobbosouza@yahoo.com.br","role":"Developer"},"files":["index.js","rules"],"main":"index.js","repository":{"type":"git","url":"https://github.com/cknow/tslint-config"},"scripts":{"check-coverage":"nyc check-coverage --global 100","commit":"git-cz","commitmsg":"validate-commit-msg","cover":"nyc --reporter lcov --reporter text ava","lint":"eslint index.js rules/ test/","posttest":"npm run check-coverage","precommit":"npm run lint","precover":"rimraf .nyc_output coverage","prepush":"npm t","pretest":"npm run lint","report-coverage":"cat ./coverage/lcov.info | coveralls","semantic-release":"semantic-release pre && npm publish && semantic-release post","test":"npm run cover","watch":"nodemon --exec npm t"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"devDependencies":{"@cknow/eslint-config":"^2.2.0","ava":"^0.22.0","babel-core":"^6.26.0","babel-preset-env":"^1.6.0","commitizen":"^2.9.6","coveralls":"^3.0.0","cz-conventional-changelog":"^2.0.0","eslint":"^4.9.0","eslint-plugin-ava":"^4.2.2","husky":"^0.14.3","nodemon":"^1.12.1","nyc":"^11.2.1","rimraf":"^2.6.2","semantic-release":"^8.2.0","tslint":"^5.8.0","typescript":"^2.5.3","validate-commit-msg":"^2.14.0"},"peerDependencies":{"tslint":">=5.8.0"},"engines":{"node":">=4","npm":">=3"},"preferGlobal":false,"private":false} | ||
{ | ||
"name": "@cknow/tslint-config", | ||
"version": "3.3.0", | ||
"description": "TSLint shareable config", | ||
"keywords": [ | ||
"tslint", | ||
"tslint-config", | ||
"tslint-rules", | ||
"typescript", | ||
"config", | ||
"code", | ||
"quality", | ||
"style", | ||
"lint", | ||
"linter", | ||
"validate", | ||
"code style", | ||
"standard", | ||
"strict", | ||
"check", | ||
"checker", | ||
"verify", | ||
"enforce" | ||
], | ||
"homepage": "https://github.com/cknow/tslint-config", | ||
"bugs": { | ||
"url": "https://github.com/cknow/tslint-config/issues", | ||
"email": "ricardo@clicknow.com.br" | ||
}, | ||
"license": "MIT", | ||
"author": { | ||
"name": "Ricardo Gobbo de Souza", | ||
"email": "ricardogobbosouza@yahoo.com.br", | ||
"role": "Developer" | ||
}, | ||
"files": [ | ||
"index.js", | ||
"rules" | ||
], | ||
"main": "index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/cknow/tslint-config" | ||
}, | ||
"scripts": { | ||
"check-coverage": "nyc check-coverage --global 100", | ||
"commit": "git-cz", | ||
"commitmsg": "validate-commit-msg", | ||
"cover": "nyc --reporter lcov --reporter text ava", | ||
"lint": "eslint index.js rules/ test/", | ||
"posttest": "npm run check-coverage", | ||
"precommit": "npm run lint", | ||
"precover": "rimraf .nyc_output coverage", | ||
"prepush": "npm t", | ||
"pretest": "npm run lint", | ||
"report-coverage": "cat ./coverage/lcov.info | coveralls", | ||
"semantic-release": "semantic-release", | ||
"test": "npm run cover", | ||
"travis-deploy-once": "travis-deploy-once", | ||
"watch": "nodemon --exec npm t" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "node_modules/cz-conventional-changelog" | ||
} | ||
}, | ||
"devDependencies": { | ||
"@cknow/eslint-config": "^2.5.0", | ||
"ava": "^0.24.0", | ||
"babel-core": "^6.26.0", | ||
"babel-preset-env": "^1.6.1", | ||
"commitizen": "^2.9.6", | ||
"coveralls": "^3.0.0", | ||
"cz-conventional-changelog": "^2.1.0", | ||
"eslint": "^4.15.0", | ||
"eslint-plugin-ava": "^4.4.0", | ||
"husky": "^0.14.3", | ||
"nodemon": "^1.14.11", | ||
"nyc": "^11.4.1", | ||
"rimraf": "^2.6.2", | ||
"semantic-release": "^11.0.2", | ||
"travis-deploy-once": "^4.3.0", | ||
"tslint": "^5.9.1", | ||
"typescript": "^2.6.2", | ||
"validate-commit-msg": "^2.14.0" | ||
}, | ||
"peerDependencies": { | ||
"tslint": ">=5.9.1" | ||
}, | ||
"engines": { | ||
"node": ">=6", | ||
"npm": ">=3" | ||
}, | ||
"preferGlobal": false, | ||
"private": false | ||
} |
@@ -20,2 +20,3 @@ 'use strict'; | ||
'no-duplicate-variable': [true, 'check-parameters'], | ||
'no-dynamic-delete': true, | ||
'no-empty': [true, 'allow-empty-catch'], | ||
@@ -40,3 +41,4 @@ 'no-eval': true, | ||
typeAlias: true, | ||
typeParameter: true | ||
typeParameter: true, | ||
temporalDeadZone: true | ||
}], | ||
@@ -43,0 +45,0 @@ 'no-sparse-arrays': true, |
@@ -21,2 +21,3 @@ 'use strict'; | ||
}], | ||
'prefer-readonly': [true, 'only-inline-lambdas'], | ||
'trailing-comma': [true, { | ||
@@ -23,0 +24,0 @@ multiline: 'never', |
@@ -22,2 +22,3 @@ 'use strict'; | ||
'newline-before-return': true, | ||
'newline-per-chained-call': false, | ||
'new-parens': true, | ||
@@ -24,0 +25,0 @@ 'no-angle-bracket-type-assertion': false, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
15215
269
18