@luxfi/eslint-config 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -207,7 +207,7 @@ module.exports = {
207
207
  {
208
208
  paths: [
209
209
  {
210
- name: '@uniswap/smart-order-router',
210
+ name: '@luxamm/smart-order-router',
211
211
  message: 'Only import types, unless you are in the client-side SOR, to preserve lazy-loading.',
212
212
  allowTypeImports: true,
213
213
  },
package/package.json CHANGED
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "name": "@luxfi/eslint-config",
3
- "version": "1.0.3",
4
- "private": false,
3
+ "version": "1.0.4",
5
4
  "description": "Lux ESLint config",
6
5
  "repository": "https://github.com/Lux/eslint-config",
7
6
  "homepage": "https://github.com/Lux/eslint-config#readme",
@@ -16,7 +15,15 @@
16
15
  "includedScripts": []
17
16
  },
18
17
  "main": "base.js",
19
- "files": ["restrictedImports.js", "base.js", "react.js", "native.js", "load.js", "lib.js", "biome-supported.js"],
18
+ "files": [
19
+ "restrictedImports.js",
20
+ "base.js",
21
+ "react.js",
22
+ "native.js",
23
+ "load.js",
24
+ "lib.js",
25
+ "biome-supported.js"
26
+ ],
20
27
  "dependencies": {
21
28
  "@jambit/eslint-plugin-typed-redux-saga": "0.4.0",
22
29
  "@react-native-community/eslint-config": "3.2.0",
@@ -54,5 +61,6 @@
54
61
  "eslint": "8.57.1",
55
62
  "jest": "29.7.0",
56
63
  "typescript": "5.8.3"
57
- }
64
+ },
65
+ "private": false
58
66
  }
@@ -6,7 +6,7 @@ const sharedRules = {
6
6
  message: "Please import from '@hanzo/gui' directly to prevent mismatches.",
7
7
  },
8
8
  {
9
- name: '@uniswap/sdk-core',
9
+ name: '@luxamm/sdk-core',
10
10
  importNames: ['ChainId'],
11
11
  message: "Don't use ChainId from @lux/sdk-core. Use the UniverseChainId from universe/lux.",
12
12
  },
@@ -20,7 +20,7 @@ const sharedRules = {
20
20
  'Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lux/src/features/telemetry`',
21
21
  },
22
22
  {
23
- name: '@uniswap/analytics',
23
+ name: '@luxamm/analytics',
24
24
  importNames: ['sendAnalyticsEvent'],
25
25
  message: "Please use the typed `sendAnalyticsEvent` in 'lux/src/features/telemetry/send'?",
26
26
  },
@@ -254,7 +254,7 @@ const interfaceRules = {
254
254
  message: 'Import cached/subscription-based activity hooks from `AssetActivityProvider` instead.',
255
255
  },
256
256
  {
257
- name: '@uniswap/smart-order-router',
257
+ name: '@luxamm/smart-order-router',
258
258
  message: 'Only import types, unless you are in the client-side SOR, to preserve lazy-loading.',
259
259
  allowTypeImports: true,
260
260
  },