Remove eclint from dev deps

eclint looks abandoned and contains vulnerable dependency (axis). Need to find a good replacement.
This commit is contained in:
vimux 2019-06-20 15:54:50 -04:00
parent ab780a0887
commit 831aa8c368
No known key found for this signature in database
GPG key ID: 5A34FDC4EE832E34
2 changed files with 1364 additions and 1773 deletions

3127
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -49,16 +49,14 @@
"stylelint-order": "^1.0.0"
},
"scripts": {
"lint:editorconfig": "eclint check '**/*.{html,css,js,json,md,toml,yaml,yml}'",
"lint:prefixes": "postcss static/css/*.css",
"lint:css": "stylelint static/css/*.css",
"lint:js": "eslint static/js/*.js",
"lint": "npm run lint:css && npm run lint:js && npm run lint:editorconfig",
"fix:editorconfig": "eclint fix '**/*.{html,css,js,json,md,toml,yaml,yml}'",
"lint": "npm run lint:css && npm run lint:js",
"fix:prefixes": "postcss -r static/css/*.css",
"fix:css": "stylelint static/css/*.css --fix",
"fix:js": "eslint static/js/*.js --fix",
"fix": "npm run fix:prefixes && npm run fix:css && npm run fix:js && npm run fix:editorconfig",
"fix": "npm run fix:prefixes && npm run fix:css && npm run fix:js",
"test": "npm run lint"
},
"repository": {