1
0
Fork 0

Adding upstream version 1.9.1+dfsg.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-17 07:10:40 +01:00
parent c6123b914a
commit dafef1aa3b
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
1847 changed files with 36221 additions and 0 deletions

24
.eslintrc.json Normal file
View file

@ -0,0 +1,24 @@
{
"root": true,
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2019
},
"extends": "eslint:recommended",
"rules": {
"no-return-await": "error",
"object-curly-spacing": [
"error",
"always"
],
"prefer-template": "error",
"semi": [
"error",
"never"
],
"strict": "error"
}
}