mostly linting

cordova
Valerie 2022-07-20 17:32:23 -04:00
parent 321c6c5c01
commit ac194491c7
4 changed files with 26 additions and 2 deletions

15
docker-compose.yml 100644
View File

@ -0,0 +1,15 @@
version: '3.1'
services:
db:
image: mariadb
restart: always
environment:
MARIADB_ROOT_PASSWORD: example
adminer:
image: adminer
restart: always
ports:
- 8080:8080

View File

@ -26,7 +26,7 @@
"test:renderer": "vitest run -r packages/renderer --passWithNoTests",
"test:server": "vitest run -r packages/server --passWithNoTests",
"watch": "node scripts/watch.js",
"lint": "eslint . --ext js,ts,vue",
"lint": "eslint . --ext js,ts,tsx",
"typecheck:main": "tsc --noEmit -p packages/main/tsconfig.json",
"typecheck:preload": "tsc --noEmit -p packages/preload/tsconfig.json",
"typecheck:renderer": "vue-tsc --noEmit -p packages/renderer/tsconfig.json",

View File

@ -13,5 +13,8 @@
"ecmaVersion": 12,
"sourceType": "module"
},
"no-unused-vars": "off"
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off"
}
}

View File

@ -0,0 +1,6 @@
{
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off"
}
}