UNPKG

@e2fyi/streams

Version:

Nodejs stream library for various use cases: e.g. Auto-tagging object streams, streaming to mongoDb via mongoose models, etc.

38 lines (37 loc) 720 B
{ "extends": ["eslint:recommended", "google", "prettier"], "parserOptions": { "ecmaVersion": 8 }, "env": { "node": true, "es6": true, "mocha": true }, "plugins": ["prettier"], "rules": { "prettier/prettier": [ "error", { "singleQuote": true, "trailingComma": "none", "bracketSpacing": false, "jsxBracketSameLine": false } ], "brace-style": "off", "new-cap": [ "error", { "capIsNewExceptions": [ "PassThrough", "Document" ] } ], "no-var": "off", "require-jsdoc": "off", "comma-dangle": ["error", "never"], "arrow-parens": ["error", "as-needed"] } }