UNPKG

blinktrade

Version:

BlinkTrade client for node.js

43 lines (42 loc) 1.29 kB
{ "extends": ["airbnb-base", "plugin:flowtype/recommended"], "parser": "babel-eslint", "rules": { "flowtype/space-after-type-colon": 0, "flowtype/semi": [2, "always"], "flowtype/object-type-delimiter": [2, "comma"], "indent": ["error", 2, { "ignoredNodes": ["ConditionalExpression"], "SwitchCase": 1 }], "import/prefer-default-export": 0, "prefer-template": 0, "key-spacing": 0, "max-len": 0, "no-console": 0, "radix": 0, "global-require": 0, "arrow-body-style": 0, "arrow-parens": 0, "consistent-return": 0, "quote-props": 0, "no-bitwise": 0, "no-nested-ternary": 0, "no-multi-spaces": 0, "no-unused-expressions": 0, "no-case-declarations": 0, "newline-per-chained-call": 0, "class-methods-use-this": 0, "object-curly-spacing": ["error", "always", { "objectsInObjects": false }], "import/no-extraneous-dependencies": [2, { devDependencies: true }], "no-unused-vars": [2, {"varsIgnorePattern": "Columns|VerificationData" }], "new-cap": [2, { "newIsCapExceptions": [ "hmac" ] }], "object-curly-newline": 0 }, "globals": { "window": true, "document": true, "describe": true, "expect": true, "test": true, "jest": true }, "plugins": ["flowtype"] }