try without package.json
Some checks failed
Lint / Run linters (push) Failing after 31s

This commit is contained in:
Marius Alwan Meyer 2023-05-01 22:31:19 +00:00
parent ee905058f3
commit c4889b9d7f

View File

@ -1,54 +0,0 @@
{
"name": "rocketchat-gitea-hook",
"version": "1.15.0-sporq",
"description": "Rocket.Chat integrate Gitea's notifications via Incoming Webhook",
"repository": "https://git.sporq.de/sporq/rocketchat-gitea-hook",
"license": "MIT",
"private": true,
"main": "./gitea-rocketchat.hooks.js",
"eslintConfig": {
"root": true,
"extends": [
"plugin:jsdoc/recommended"
],
"env": {
"node": true,
"jest": true
},
"settings": {
"jsdoc": {
"mode": "typescript"
}
},
"rules": {
"no-await-in-loop": "off",
"no-unused-vars": [
"error",
{
"args": "none",
"varsIgnorePattern": "^_"
}
],
"jsdoc/check-indentation": "error",
"jsdoc/check-syntax": "error",
"jsdoc/newline-after-description": [
"error",
"never"
],
"jsdoc/require-description": "error",
"jsdoc/require-hyphen-before-param-description": "error",
"jsdoc/require-jsdoc": "off"
}
},
"eslintIgnore": [
"node_modules/",
"img/"
],
"dependencies": {
"eslint": "^8.39.0",
"prettier": "^2.8.8"
},
"devDependencies": {
"eslint-plugin-jsdoc": "^43.1.1"
}
}