summaryrefslogtreecommitdiffhomepage
path: root/.npmpackagejsonlintrc.json
blob: c49faeee0049151f386272ac1e15683a1c13e3e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
	"rules": {
		"no-restricted-dependencies": [
			"error",
			[
				"@sentry/*",
				"posthog*",
				"@posthog/*",
				"posthog-node",
				"@datadog/*",
				"mixpanel",
				"mixpanel/*",
				"@analytics/*",
				"logrocket"
			]
		],
		"no-restricted-devDependencies": [
			"error",
			[
				"@sentry/*",
				"posthog*",
				"@posthog/*",
				"posthog-node",
				"@datadog/*",
				"mixpanel",
				"mixpanel/*",
				"@analytics/*",
				"logrocket"
			]
		]
	}
}