Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update enterprise import lint rule reference link #26628

Merged
merged 1 commit into from Oct 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc.js
Expand Up @@ -55,7 +55,7 @@ const config = {
group: ['**/enterprise/*'],
message: `The OSS product may not pull in any code from the enterprise codebase, to stay a 100% open-source program.

See https://about.sourcegraph.com/community/faq#is-all-of-sourcegraph-open-source for more information.`,
See https://handbook.sourcegraph.com/community/faq#is-all-of-sourcegraph-open-source for more information.`,
},
],
},
Expand Down
2 changes: 1 addition & 1 deletion dev/check/ts-enterprise-import.sh
Expand Up @@ -23,7 +23,7 @@ if [ -n "$IMPORT_MATCHES" ]; then
Importing from enterprise in non-enterprise modules is forbidden. The OSS product may not
pull in any code from the enterprise codebase, to stay a 100% open-source program. See
this page for more information:
https://about.sourcegraph.com/community/faq#is-all-of-sourcegraph-open-source
https://handbook.sourcegraph.com/community/faq#is-all-of-sourcegraph-open-source

To make this check pass, remove that import. Usually this works by:
- Pulling shared code out of the enterprise directory.
Expand Down