Revision 78a2026a822c557c6abda15171e4dc38d9259e5c authored by vin01 on 01 October 2020, 18:29:48 UTC, committed by GitHub on 01 October 2020, 18:29:48 UTC
`read_api` seems to be the minimal scope currently which can be used, it shall be preferred over `api` which grants complete read/write access.

- https://gitlab.com/gitlab-org/gitlab/-/merge_requests/28944#note_322904691
- https://gitlab.com/gitlab-org/gitlab/-/issues/21909
1 parent 1854421
Raw File
.eslintrc
{
  "extends": ["@grafana/eslint-config"],
  "root": true,
  "overrides": [
    {
      "files": ["packages/grafana-ui/**/*.{ts,tsx}", "public/app/**/*.{ts,tsx}"],
      "rules": {
        "react-hooks/rules-of-hooks": "off",
        "react-hooks/exhaustive-deps": "off"
      }
    }
  ]
}
back to top