tokenbridge/monitor/.eslintrc
Przemyslaw Rzad f5ff33d21f
Oracle & Monitor - Compiled ABI's (#71)
* Oracle abi taken from compilation.
Moved project setup from dockerfile to package.json scripts

* Use compile:contracts script instead of repeated command

* Update imports to root contracts instead of copying

* Rule for importing unpublished. Lint fix

* Remove prepare:contracts and import:contracts

* Disabled ModuleScopePlugin in order to be able to import contracts outside src dir

* Fix for rm removing . and .. on linux
2019-05-27 09:22:08 +02:00

13 lines
209 B
Plaintext

{
"plugins": ["node"],
"extends": [
"plugin:node/recommended",
"airbnb-base",
"../.eslintrc"
],
"rules": {
"no-use-before-define": "off",
"node/no-unpublished-require": "off"
}
}