Revision 0d9b32105825e67991189a16652b56c1a1a24425 authored by Torkel Ödegaard on 17 October 2022, 12:19:57 UTC, committed by GitHub on 17 October 2022, 12:19:57 UTC
1 parent 0f9e6dd
Raw File
.eslintrc
{
  "rules": {
    "no-restricted-imports": ["error", { "patterns": ["@grafana/*"] }]
  },
  "overrides": [
    {
      "files": ["**/*.test.{ts,tsx}"],
      "rules": {
        "no-restricted-imports": "off"
      }
    }
  ]
}
back to top