Replace tslint by eslint

This commit is contained in:
Jonas Lochmann 2022-07-25 02:00:00 +02:00
parent 2f0ca96d7d
commit c70c0d131a
No known key found for this signature in database
GPG key ID: 8B8C9AEE10FA5B36
6 changed files with 2134 additions and 357 deletions

View file

@ -1,15 +1,15 @@
{
"scripts": {
"develop": "parcel src/index.html",
"lint": "tslint --project .",
"lint:fix": "tslint --project . --fix",
"build": "tslint --project . && rimraf dist && parcel build src/index.html --no-source-maps --no-optimize --no-cache --public-url . && node finish-build.mjs"
"lint": "eslint src",
"build": "eslint src && rimraf dist && parcel build src/index.html --no-source-maps --no-optimize --no-cache --public-url . && node finish-build.mjs"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"parcel": "^2.6.2",
"rimraf": "^3.0.1",
"tslint": "^6.0.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.5"
}
}