.eslintrc.json 324 B

12345678
  1. {
  2. "extends": ["@excalidraw/eslint-config", "react-app"],
  3. "rules": {
  4. "import/no-anonymous-default-export": "off",
  5. "no-restricted-globals": "off",
  6. "@typescript-eslint/consistent-type-imports": ["error", { "prefer": "type-imports", "disallowTypeAnnotations": false, "fixStyle": "separate-type-imports" }]
  7. }
  8. }