Chore: Update `sonarwhal` version

This commit is contained in:
molant 2018-02-06 13:39:26 -08:00
Родитель 11f5ad8ac3
Коммит a55407672e
4 изменённых файлов: 7022 добавлений и 853 удалений

Просмотреть файл

@ -33,7 +33,7 @@
"npm-run-all": "^4.1.2",
"on-headers": "^1.0.1",
"rimraf": "^2.6.2",
"sonarwhal": "^0.23.1",
"sonarwhal": "^0.25.0",
"typescript": "^2.6.2",
"typescript-eslint-parser": "^12.0.0"
},
@ -55,7 +55,7 @@
"main": "dist/src/index.js",
"name": "sonarwhal-rule-chisel",
"peerDependencies": {
"sonarwhal": "^0.23.1"
"sonarwhal": "^0.25.0"
},
"repository": "Microsoft/sonarwhal-microsoft-rules",
"scripts": {

7861
rules/jsll/package-lock.json сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -17,7 +17,6 @@
"description": "sonarwhal rule to validate Microsoft's JSLL configuration.",
"devDependencies": {
"@types/debug": "0.0.30",
"@types/lodash": "^4.14.101",
"@types/node": "8.0.14",
"async-retry": "^1.1.4",
"ava": "^0.24.0",
@ -30,12 +29,12 @@
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-typescript": "^0.8.1",
"express": "^4.16.2",
"lodash": "^4.17.5",
"lodash.clonedeep": "^4.5.0",
"markdownlint-cli": "^0.6.0",
"npm-run-all": "^4.1.2",
"on-headers": "^1.0.1",
"rimraf": "^2.6.2",
"sonarwhal": "^0.23.1",
"sonarwhal": "^0.25.0",
"typescript": "^2.6.2",
"typescript-eslint-parser": "^12.0.0"
},
@ -57,9 +56,10 @@
"main": "dist/src/index.js",
"name": "sonarwhal-rule-jsll",
"peerDependencies": {
"sonarwhal": "^0.23.1"
"sonarwhal": "^0.25.0"
},
"scripts": {
"ava": "ava",
"build": "npm run clean && npm-run-all build:*",
"build:assets": "cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist",
"build:ts": "tsc --outDir \"./dist\"",

Просмотреть файл

@ -1,4 +1,4 @@
import { cloneDeep } from 'lodash';
import * as cloneDeep from 'lodash.cloneDeep';
/** Look for the target property recursively and modify/delete the value */
export const modifyValue = (obj, targetProp: string, targetValue) => {