d656025378
* Moved audit to root directory. * Moved code of conduct, contributing and licence files. * Removed travis config and badge. * Updated repository links in CONTRIBUTING. * Moved Gitter badge to main readme. Updated links to contributing and licence. * Updated main readme. * Moved references to main readme. * Renamed token-bridge to oracle. * Update README.md Co-Authored-By: rzadp <rzadp@student.mini.pw.edu.pl>
22 lines
508 B
Plaintext
22 lines
508 B
Plaintext
{
|
|
"extends": [
|
|
"plugin:node/recommended",
|
|
"airbnb-base",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"plugins": ["node"],
|
|
"rules": {
|
|
"arrow-body-style": "off",
|
|
"func-names": "off",
|
|
"no-await-in-loop": "off",
|
|
"no-console": "off",
|
|
"no-else-return": "off",
|
|
"no-param-reassign": "off",
|
|
"no-plusplus": "off",
|
|
"no-restricted-syntax": "off",
|
|
"no-shadow": "off",
|
|
"no-use-before-define": ["error", { "functions": false }],
|
|
"import/no-dynamic-require": "off"
|
|
}
|
|
}
|