Skip to content
Snippets Groups Projects
Select Git revision
  • a00339395c053437fba481262300c158460124e0
  • main default protected
  • 24-everything-from-git
  • 45-create-new-poc-deployment-with-docker
  • 44-add-a-cli-tool
  • improve-deployment
  • 31-backend
  • bash-script-bug-fix
  • upgrades_submodules
  • 24-dependencies-build-nested-watch
  • 24-dependencies-build-using-workspaces
  • 24-dependencies-build
  • wip-all-local
  • 10-annotot
  • 3-annotation-plugin-showing-up
15 results

dev.yml

Blame
  • .eslintrc 1.18 KiB
    {
      "env": {
        "jest/globals": true
      },
      "extends": ["airbnb","react-app"],
      "globals": {
        "page": true,
        "document": true
      },
      "plugins": ["jest"],
      "rules": {
        "import/prefer-default-export": "off",
        "no-console": "off",
        "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
        "require-jsdoc": ["error", {
          "require": {
            "FunctionDeclaration": true,
            "MethodDefinition": true,
            "ClassDeclaration": true,
            "ArrowFunctionExpression": true,
            "FunctionExpression": true
          }
        }],
        "no-underscore-dangle": "off",
        "react/prefer-stateless-function": "off",
        "sort-keys": ["error", "asc", {
          "caseSensitive": false,
          "natural": false
        }],
        "react/jsx-props-no-spreading": "off",
        "react/function-component-definition": "off",
        "default-param-last": "off",
        "arrow-parens": "off",
        "import/no-anonymous-default-export": "off",
        "max-len": ["error", {
          "code": 120,
          "ignoreComments": true,
          "ignoreStrings": true,
          "ignoreTemplateLiterals": true,
          "ignoreRegExpLiterals": true
        }],
        "react/jsx-uses-react": "off",
        "react/react-in-jsx-scope": "off"
      }
    }