grigori-gru/matrix-cli

View on GitHub
.eslintrc

Summary

Maintainability
Test Coverage
{
    "parserOptions": {
        "ecmaVersion": 2019
    },
    "extends": ["eslint:recommended", "google", "prettier"],
    "plugins": ["jest"],
    "env": {
        "es6": true,
        "node": true,
        "jest": true
    },
    "rules": {
        "no-console": "error",
        "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"
    }
}