.eslintrc.json 1.16 KiB
  "root": true,
  "parser": "babel-eslint",
  "extends": [
    "plugin:import/errors",
    "plugin:import/warnings",
    "plugin:unicorn/recommended",
    "xo/esnext",
    "xo/browser"
  "rules": {
    "capitalized-comments": "off",
    "indent": [
      "error",
        "MemberExpression": "off",
        "SwitchCase": 1
    "max-params": [
      "warn",
    "multiline-ternary": [
      "error",
      "always-multiline"
    "new-cap": "off",
    "no-mixed-operators": "error",
    "object-curly-spacing": [
      "error",
      "always"
    "prefer-destructuring": [
      "error",
        "object": true,
        "array": false
    "semi": [
      "error",
      "never"
    "unicorn/explicit-length-check": "off",
    "unicorn/import-index": "off",
    "unicorn/no-for-loop": "off",
    "unicorn/no-unused-properties": "error",
    "unicorn/prefer-includes": "off",
    "unicorn/prefer-node-append": "off",
    "unicorn/prefer-node-remove": "off",
    "unicorn/prefer-query-selector": "off",
    "unicorn/prefer-text-content": "off",
    "unicorn/prevent-abbreviations": "off"