batyshkaLenin/twtxt-cli

View on GitHub
.eslintrc

Summary

Maintainability
Test Coverage
{
  "env": {
    "commonjs": true,
    "jest/globals": true
  },
  "extends": [
    "airbnb-base"
  ],
  "plugins": [
    "jest"
  ],
  "rules": {
    "naming-convention": "off",
    "no-underscore-dangle": "off",
    "object-curly-newline": "off",
    "no-console": "off",
    "no-param-reassign": ["error", { "props": false }],
    "max-len": [
      "error",
      140,
      2,
      {
        "ignoreUrls": true,
        "ignoreComments": false,
        "ignoreRegExpLiterals": true,
        "ignoreStrings": true,
        "ignoreTemplateLiterals": true
      }
    ]
  }
}