5efc9a6688
* Removed duplicate licence, updated links do Contributing and Licence in sub-readme. * Renamed bridge-monitor to monitor. * Removed package-lock.json. * Added monitor workspace with linting. * Consistent eslint version. * Added readme for merging.
22 lines
494 B
Plaintext
22 lines
494 B
Plaintext
{
|
|
"plugins": ["node", "prettier"],
|
|
"extends": [
|
|
"plugin:node/recommended",
|
|
"airbnb-base",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"arrow-body-style": "off",
|
|
"no-await-in-loop": "off",
|
|
"no-console": "off",
|
|
"no-else-return": "off",
|
|
"no-plusplus": "off",
|
|
"no-restricted-syntax": "off",
|
|
"no-shadow": "off",
|
|
"prefer-template": "off",
|
|
"no-use-before-define": "off",
|
|
"no-underscore-dangle": "off"
|
|
}
|
|
}
|