guidesmiths/rascal

View on GitHub
.eslintrc.json

Summary

Maintainability
Test Coverage
{
  "extends": ["eslint-config-airbnb-base"],
  "env": {
    "node": true
  },
  "parserOptions": {
    "ecmaVersion": "2018"
  },
  "rules": {
    "arrow-body-style": 0,
    "consistent-return": 0,
    "func-names": 0,
    "max-len": 0,
    "no-param-reassign": 0,
    "no-plusplus": 0,
    "no-restricted-properties": 0,
    "no-shadow": ["error", { "allow": ["cb", "err"] }],
    "no-underscore-dangle": 0,
    "no-unused-expressions": 0,
    "no-unused-vars": ["error", { "varsIgnorePattern": "^debug$", "argsIgnorePattern": "^_\\w+" }],
    "no-use-before-define": 0,
    "prefer-destructuring": 0,
    "prefer-exponentiation-operator": 0,
    "prefer-rest-params": 0
  }
}