tokenbridge/monitor/.eslintrc

22 lines
494 B
Plaintext
Raw Normal View History

2019-05-08 16:12:02 +03:00
{
"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"
}
}