UNPKG

bitso-node-api

Version:
27 lines (26 loc) 509 B
module.exports = { extends: 'airbnb-base', env: { es6: true, browser: false, mocha: true, node: true, }, globals: { __base: true, }, rules: { 'indent': [2, 2], 'no-console': 1, 'max-len': [0, 100, 2, { ignoreComments: true }], 'arrow-body-style': 0, 'prefer-destructuring': 0, 'no-restricted-syntax': [ 'error', 'LabeledStatement', 'WithStatement', ], 'object-curly-newline': 0, 'comma-dandle': ['only-multiline'], }, };