add js linting, fix js linting issues

This commit is contained in:
2023-06-29 22:20:15 +00:00
parent 6ce1cc332a
commit e66d3ceb33
9 changed files with 1643 additions and 1568 deletions

16
package.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "proxmoxaas-client",
"version": "0.0.1",
"description": "Front-end for ProxmoxAAS",
"type": "module",
"scripts": {
"lint": "eslint --fix ."
},
"devDependencies": {
"eslint": "^8.43.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1"
}
}