.eslintrc 309 Bytes
Newer Older
1 2
{
  "rules": {
3 4 5 6 7 8
    "no-restricted-imports": ["error", { "patterns": ["@grafana/runtime", "@grafana/ui", "@grafana/e2e"] }]
  },
  "overrides": [
    {
      "files": ["**/*.{test,story}.{ts,tsx}"],
      "rules": {
9 10
        "no-restricted-imports": "off",
        "react/prop-types": "off"
11 12 13
      }
    }
  ]
14
}