UNPKG

postgresql-to-mongodb

Version:

Transfer PostgreSQL tables to MongoDB collections.

29 lines 671 B
{ "env": { "browser": true, "commonjs": true, "es6": true, "node": true }, "plugins": [ ], "extends": ["eslint:recommended", "plugin:prettier/recommended"], "parserOptions": { "sourceType": "module", "ecmaVersion": 2018 }, "settings": { }, "rules": { "linebreak-style": ["error", "unix"], "no-console": "off", "no-restricted-syntax": [ "error", { "selector": "CallExpression[callee.object.name='console'][callee.property.name!=/^(log|warn|error|info|trace)$/]", "message": "Unexpected property on console object was called" } ], "no-unused-vars":"off" } }