f0493d595f
* Don't require BTC core connection * Docker: Don't clone, but use local repo * Add GitHub workflows * Allow to overwrite hostname * chore: update dependencies * Get tor URL from env
22 lines
354 B
Plaintext
22 lines
354 B
Plaintext
{
|
|
"parser": "@babel/eslint-parser",
|
|
"plugins": [
|
|
"prettier"
|
|
],
|
|
"extends": ["plugin:prettier/recommended"],
|
|
"rules": {
|
|
"prettier/prettier": [
|
|
"warn",
|
|
{
|
|
"singleQuote": true,
|
|
"printWidth": 140,
|
|
"trailingComma": "all"
|
|
}
|
|
]
|
|
},
|
|
"env":{
|
|
"es6": true
|
|
},
|
|
"globals": { "fetch": false }
|
|
}
|