UNPKG

node-input-validator

Version:

validation library for nodejs, inspired by laravel.

38 lines (37 loc) 884 B
{ "env": { "commonjs": true, "es6": true, "node": true, "mocha": true }, "extends": [ "airbnb-base" ], "globals": { "Atomics": "readonly", "SharedArrayBuffer": "readonly" }, "parserOptions": { "ecmaVersion": 2017 }, "rules": { "no-plusplus": "off", "no-continue": "off", "no-param-reassign": "off", "no-empty": "off", "no-throw-literal": "off", "no-restricted-globals": "off", "no-underscore-dangle": "off", "radix": "off", "no-prototype-builtins": "off", "class-methods-use-this": "off", "max-len": [ "error", 120 ], "array-callback-return": "off", "default-case": "off", "comma-dangle": "off" } }