Skip to content

Commit 5b4b2d9

Browse files
committed
use public package name
1 parent 6eb0aa0 commit 5b4b2d9

8 files changed

Lines changed: 13 additions & 18 deletions

File tree

examples/kitchen-sink/eslint.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { join } from "path";
22
import { includeIgnoreFile } from "@eslint/compat";
3-
4-
import reactNativeConfig from "@magic/eslint-config/react-native";
3+
import reactNativeConfig from "magic-eslint-config/react-native";
54

65
/** @type {import('typescript-eslint').Config} */
76
export default [

examples/kitchen-sink/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
},
4545
"devDependencies": {
4646
"@babel/core": "^7.20.0",
47-
"@magic/eslint-config": "workspace:*",
47+
"magic-eslint-config": "workspace:*",
4848
"@magic/prettier-config": "workspace:*",
4949
"@magic/tsconfig": "workspace:*",
5050
"expo-doctor": "1.12.4"

packages/modal/eslint.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { join } from "path";
22
import { includeIgnoreFile } from "@eslint/compat";
3-
4-
import reactNativeConfig from "@magic/eslint-config/react-native";
3+
import reactNativeConfig from "magic-eslint-config/react-native";
54

65
/** @type {import('typescript-eslint').Config} */
76
export default [

packages/modal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
},
6464
"devDependencies": {
6565
"@types/react": "~18.3.12",
66-
"@magic/eslint-config": "workspace:*",
66+
"magic-eslint-config": "workspace:*",
6767
"@magic/prettier-config": "workspace:*",
6868
"@magic/tsconfig": "workspace:*",
6969
"@release-it/conventional-changelog": "^9.0.3",

pnpm-lock.yaml

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/eslint/next.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/// <reference types="./types.d.ts" />
22
import next from "@next/eslint-plugin-next";
3-
4-
import reactRules from "@magic/eslint-config/react";
3+
import reactRules from "magic-eslint-config/react";
54

65
/** @type {Awaited<import('typescript-eslint').Config>} */
76
export default [

tools/eslint/react-native.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
/// <reference types="./types.d.ts" />
22
import reactNative from "eslint-plugin-react-native";
33
import reanimated from "eslint-plugin-reanimated";
4-
5-
import reactRules from "@magic/eslint-config/react";
4+
import reactRules from "magic-eslint-config/react";
65

76
/** @type {Awaited<import('typescript-eslint').Config>} */
87
export default [

tools/eslint/react.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ import shopify from "@shopify/eslint-plugin";
33
import react from "eslint-plugin-react";
44
import reactCompiler from "eslint-plugin-react-compiler";
55
import hooksPlugin from "eslint-plugin-react-hooks";
6-
7-
import baseRules from "@magic/eslint-config/base";
6+
import baseRules from "magic-eslint-config/base";
87

98
/** @type {Awaited<import('typescript-eslint').Config>} */
109
export default [

0 commit comments

Comments
 (0)