fabasoad/icq-notify-action

View on GitHub
.eslintrc.json

Summary

Maintainability
Test Coverage
{
  "env": {
    "node": true,
    "es6": true
  },
  "extends": [
    "google"
  ],
  "globals": {
    "Atomics": "readonly",
    "SharedArrayBuffer": "readonly"
  },
  "parser": "@typescript-eslint/parser",
  "parserOptions": {
    "ecmaVersion": 2022,
    "sourceType": "module"
  },
  "plugins": [
    "@typescript-eslint"
  ],
  "rules": {
    "block-spacing": ["error", "always"],
    "comma-dangle": "off",
    "indent": ["error", 2],
    "linebreak-style": "off",
    "no-unused-vars": [
      "error",
      {
        "args": "after-used",
        "varsIgnorePattern": "FaxInstance",
        "ignoreRestSiblings": false,
        "vars": "all"
      }
    ],
    "object-curly-spacing": "off",
    "require-jsdoc": "off",
    "semi": "off"
  }
}