DmitryForsilov/config-difference-generator

View on GitHub
.eslintrc.json

Summary

Maintainability
Test Coverage
{
    "env": {
        "es6": true,
        "node": true,
        "jest/globals": true
    },
    "extends": [
      "airbnb-base",
      "plugin:import/errors",
      "plugin:import/warnings"
    ],
    "globals": {
        "Atomics": "readonly",
        "SharedArrayBuffer": "readonly"
    },
    "parserOptions": {
        "ecmaVersion": 2018,
        "sourceType": "module"
    },
    "rules": {
      "strict": 0,
      "no-console": 0,
      "import/extensions": 0,
      "jest/no-disabled-tests": "warn",
      "jest/no-focused-tests": "error",
      "jest/no-identical-title": "error",
      "jest/prefer-to-have-length": "warn",
      "jest/valid-expect": "error"
    },
    "plugins": ["jest"]
}