UNPKG

dx-mgn-pool

Version:

Smart contracts and migration scripts for the MGN-pool for trading at the dutch-Exchange

43 lines 798 B
module.exports = { "env": { "browser": true, "commonjs": true }, "extends": "eslint:recommended", "parserOptions": { "ecmaFeatures": { "jsx": true }, "ecmaVersion": 2018 }, "rules": { "indent": [ "error", 2 ], "linebreak-style": [ "error", "unix" ], "quotes": [ "error", "double" ], "semi": [ "error", "never" ], "prefer-const": [ "error", ], "no-var": [ "error", ] }, "globals" : { "artifacts": false, "contract": false, "assert": false, "web3": false }, };