File: .eslintrc.json

Recommend this page to a friend!
  Classes of Harcharan Singh   Node Input Validator   .eslintrc.json   Download  
File: .eslintrc.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Node Input Validator
Validate submitted input values in Node.js
Author: By
Last change: release v4.4
Date: 2 years ago
Size: 969 bytes
 

Contents

Class file image Download
{ "env": { "commonjs": true, "es6": true, "node": true, "mocha": true }, "extends": [ "airbnb-base" ], "globals": { "Atomics": "readonly", "SharedArrayBuffer": "readonly" }, "parserOptions": { "ecmaVersion": 2017 }, "ignorePatterns": [ "cjs/*", "coverage", "docs", "esm", "node_modules" ], "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" } }