open-agreements 0.7.6 → 0.7.7
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.
- package/README.md +1 -1
- package/content/templates/openagreements-due-diligence-request-list/template.docx +0 -0
- package/content/templates/openagreements-due-diligence-request-list/template.md +1 -1
- package/dist/core/fill-pipeline.d.ts.map +1 -1
- package/dist/core/fill-pipeline.js +0 -8
- package/dist/core/fill-pipeline.js.map +1 -1
- package/dist/core/unified-pipeline.d.ts.map +1 -1
- package/dist/core/unified-pipeline.js +4 -6
- package/dist/core/unified-pipeline.js.map +1 -1
- package/gemini-extension.json +1 -1
- package/node_modules/@xmldom/xmldom/CHANGELOG.md +939 -0
- package/node_modules/@xmldom/xmldom/LICENSE +8 -0
- package/node_modules/@xmldom/xmldom/SECURITY.md +50 -0
- package/node_modules/@xmldom/xmldom/index.d.ts +1664 -0
- package/node_modules/@xmldom/xmldom/lib/.eslintrc.yml +3 -0
- package/node_modules/@xmldom/xmldom/lib/conventions.js +429 -0
- package/node_modules/@xmldom/xmldom/lib/dom-parser.js +586 -0
- package/node_modules/@xmldom/xmldom/lib/dom.js +3192 -0
- package/node_modules/@xmldom/xmldom/lib/entities.js +2171 -0
- package/node_modules/@xmldom/xmldom/lib/errors.js +202 -0
- package/node_modules/@xmldom/xmldom/lib/grammar.js +533 -0
- package/node_modules/@xmldom/xmldom/lib/index.js +41 -0
- package/node_modules/@xmldom/xmldom/lib/sax.js +929 -0
- package/node_modules/@xmldom/xmldom/package.json +74 -0
- package/node_modules/@xmldom/xmldom/readme.md +364 -0
- package/node_modules/core-util-is/LICENSE +19 -0
- package/node_modules/core-util-is/README.md +3 -0
- package/node_modules/core-util-is/lib/util.js +107 -0
- package/node_modules/core-util-is/package.json +38 -0
- package/node_modules/immediate/LICENSE.txt +20 -0
- package/node_modules/immediate/README.md +93 -0
- package/node_modules/immediate/dist/immediate.js +75 -0
- package/node_modules/immediate/dist/immediate.min.js +1 -0
- package/node_modules/immediate/lib/browser.js +69 -0
- package/node_modules/immediate/lib/index.js +73 -0
- package/node_modules/immediate/package.json +42 -0
- package/node_modules/inherits/LICENSE +16 -0
- package/node_modules/inherits/README.md +42 -0
- package/node_modules/inherits/inherits.js +9 -0
- package/node_modules/inherits/inherits_browser.js +27 -0
- package/node_modules/inherits/package.json +29 -0
- package/node_modules/isarray/.npmignore +1 -0
- package/node_modules/isarray/.travis.yml +4 -0
- package/node_modules/isarray/Makefile +6 -0
- package/node_modules/isarray/README.md +60 -0
- package/node_modules/isarray/component.json +19 -0
- package/node_modules/isarray/index.js +5 -0
- package/node_modules/isarray/package.json +45 -0
- package/node_modules/isarray/test.js +20 -0
- package/node_modules/jszip/.codeclimate.yml +16 -0
- package/node_modules/jszip/.editorconfig +8 -0
- package/node_modules/jszip/.eslintrc.js +43 -0
- package/node_modules/jszip/.github/workflows/pr.yaml +58 -0
- package/node_modules/jszip/.jekyll-metadata +0 -0
- package/node_modules/jszip/.travis.yml +17 -0
- package/node_modules/jszip/CHANGES.md +204 -0
- package/node_modules/jszip/LICENSE.markdown +651 -0
- package/node_modules/jszip/README.markdown +33 -0
- package/node_modules/jszip/deps.js +37 -0
- package/node_modules/jszip/dist/jszip.js +11577 -0
- package/node_modules/jszip/dist/jszip.min.js +13 -0
- package/node_modules/jszip/graph.svg +601 -0
- package/node_modules/jszip/index.d.ts +330 -0
- package/node_modules/jszip/lib/base64.js +106 -0
- package/node_modules/jszip/lib/compressedObject.js +74 -0
- package/node_modules/jszip/lib/compressions.js +14 -0
- package/node_modules/jszip/lib/crc32.js +77 -0
- package/node_modules/jszip/lib/defaults.js +11 -0
- package/node_modules/jszip/lib/external.js +18 -0
- package/node_modules/jszip/lib/flate.js +85 -0
- package/node_modules/jszip/lib/generate/ZipFileWorker.js +539 -0
- package/node_modules/jszip/lib/generate/index.js +57 -0
- package/node_modules/jszip/lib/index.js +55 -0
- package/node_modules/jszip/lib/license_header.js +11 -0
- package/node_modules/jszip/lib/load.js +88 -0
- package/node_modules/jszip/lib/nodejs/NodejsStreamInputAdapter.js +74 -0
- package/node_modules/jszip/lib/nodejs/NodejsStreamOutputAdapter.js +42 -0
- package/node_modules/jszip/lib/nodejsUtils.js +57 -0
- package/node_modules/jszip/lib/object.js +384 -0
- package/node_modules/jszip/lib/readable-stream-browser.js +10 -0
- package/node_modules/jszip/lib/reader/ArrayReader.js +57 -0
- package/node_modules/jszip/lib/reader/DataReader.js +116 -0
- package/node_modules/jszip/lib/reader/NodeBufferReader.js +19 -0
- package/node_modules/jszip/lib/reader/StringReader.js +38 -0
- package/node_modules/jszip/lib/reader/Uint8ArrayReader.js +22 -0
- package/node_modules/jszip/lib/reader/readerFor.js +28 -0
- package/node_modules/jszip/lib/signature.js +7 -0
- package/node_modules/jszip/lib/stream/ConvertWorker.js +26 -0
- package/node_modules/jszip/lib/stream/Crc32Probe.js +24 -0
- package/node_modules/jszip/lib/stream/DataLengthProbe.js +29 -0
- package/node_modules/jszip/lib/stream/DataWorker.js +116 -0
- package/node_modules/jszip/lib/stream/GenericWorker.js +263 -0
- package/node_modules/jszip/lib/stream/StreamHelper.js +214 -0
- package/node_modules/jszip/lib/support.js +38 -0
- package/node_modules/jszip/lib/utf8.js +275 -0
- package/node_modules/jszip/lib/utils.js +501 -0
- package/node_modules/jszip/lib/zipEntries.js +261 -0
- package/node_modules/jszip/lib/zipEntry.js +293 -0
- package/node_modules/jszip/lib/zipObject.js +133 -0
- package/node_modules/jszip/package.json +67 -0
- package/node_modules/jszip/sponsors.md +21 -0
- package/node_modules/jszip/tsconfig.json +101 -0
- package/node_modules/jszip/vendor/FileSaver.js +247 -0
- package/node_modules/lie/README.md +62 -0
- package/node_modules/lie/dist/lie.js +350 -0
- package/node_modules/lie/dist/lie.min.js +1 -0
- package/node_modules/lie/dist/lie.polyfill.js +358 -0
- package/node_modules/lie/dist/lie.polyfill.min.js +1 -0
- package/node_modules/lie/lib/browser.js +273 -0
- package/node_modules/lie/lib/index.js +298 -0
- package/node_modules/lie/license.md +7 -0
- package/node_modules/lie/lie.d.ts +244 -0
- package/node_modules/lie/package.json +69 -0
- package/node_modules/lie/polyfill.js +4 -0
- package/node_modules/pako/LICENSE +21 -0
- package/node_modules/pako/README.md +191 -0
- package/node_modules/pako/dist/pako.js +6818 -0
- package/node_modules/pako/dist/pako.min.js +1 -0
- package/node_modules/pako/dist/pako_deflate.js +3997 -0
- package/node_modules/pako/dist/pako_deflate.min.js +1 -0
- package/node_modules/pako/dist/pako_inflate.js +3300 -0
- package/node_modules/pako/dist/pako_inflate.min.js +1 -0
- package/node_modules/pako/index.js +14 -0
- package/node_modules/pako/lib/deflate.js +400 -0
- package/node_modules/pako/lib/inflate.js +423 -0
- package/node_modules/pako/lib/utils/common.js +105 -0
- package/node_modules/pako/lib/utils/strings.js +187 -0
- package/node_modules/pako/lib/zlib/README +59 -0
- package/node_modules/pako/lib/zlib/adler32.js +51 -0
- package/node_modules/pako/lib/zlib/constants.js +68 -0
- package/node_modules/pako/lib/zlib/crc32.js +59 -0
- package/node_modules/pako/lib/zlib/deflate.js +1874 -0
- package/node_modules/pako/lib/zlib/gzheader.js +58 -0
- package/node_modules/pako/lib/zlib/inffast.js +345 -0
- package/node_modules/pako/lib/zlib/inflate.js +1556 -0
- package/node_modules/pako/lib/zlib/inftrees.js +343 -0
- package/node_modules/pako/lib/zlib/messages.js +32 -0
- package/node_modules/pako/lib/zlib/trees.js +1222 -0
- package/node_modules/pako/lib/zlib/zstream.js +47 -0
- package/node_modules/pako/package.json +44 -0
- package/node_modules/process-nextick-args/index.js +45 -0
- package/node_modules/process-nextick-args/license.md +19 -0
- package/node_modules/process-nextick-args/package.json +25 -0
- package/node_modules/process-nextick-args/readme.md +18 -0
- package/node_modules/readable-stream/.travis.yml +34 -0
- package/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/readable-stream/README.md +58 -0
- package/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/node_modules/readable-stream/duplex-browser.js +1 -0
- package/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/node_modules/readable-stream/lib/_stream_writable.js +685 -0
- package/node_modules/readable-stream/lib/internal/streams/BufferList.js +78 -0
- package/node_modules/readable-stream/lib/internal/streams/destroy.js +84 -0
- package/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/readable-stream/package.json +52 -0
- package/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/readable-stream/readable-browser.js +7 -0
- package/node_modules/readable-stream/readable.js +19 -0
- package/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/readable-stream/writable-browser.js +1 -0
- package/node_modules/readable-stream/writable.js +8 -0
- package/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/setimmediate/LICENSE.txt +20 -0
- package/node_modules/setimmediate/package.json +30 -0
- package/node_modules/setimmediate/setImmediate.js +186 -0
- package/node_modules/string_decoder/.travis.yml +50 -0
- package/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/string_decoder/README.md +47 -0
- package/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/string_decoder/package.json +31 -0
- package/node_modules/util-deprecate/History.md +16 -0
- package/node_modules/util-deprecate/LICENSE +24 -0
- package/node_modules/util-deprecate/README.md +53 -0
- package/node_modules/util-deprecate/browser.js +67 -0
- package/node_modules/util-deprecate/node.js +6 -0
- package/node_modules/util-deprecate/package.json +27 -0
- package/package.json +1 -1
- package/skills/client-email/SKILL.md +8 -6
- package/skills/employment-contract/SKILL.md +23 -6
- package/skills/non-compete-contract-explainer/content/alabama.md +251 -0
- package/skills/non-compete-contract-explainer/content/alaska.md +160 -0
- package/skills/non-compete-contract-explainer/content/american-samoa.md +187 -0
- package/skills/non-compete-contract-explainer/content/arizona.md +293 -0
- package/skills/non-compete-contract-explainer/content/arkansas.md +235 -0
- package/skills/non-compete-contract-explainer/content/california.md +270 -0
- package/skills/non-compete-contract-explainer/content/cnmi.md +168 -0
- package/skills/non-compete-contract-explainer/content/colorado.md +277 -0
- package/skills/non-compete-contract-explainer/content/connecticut.md +220 -0
- package/skills/non-compete-contract-explainer/content/delaware.md +222 -0
- package/skills/non-compete-contract-explainer/content/district-of-columbia.md +263 -0
- package/skills/non-compete-contract-explainer/content/florida.md +267 -0
- package/skills/non-compete-contract-explainer/content/georgia.md +323 -0
- package/skills/non-compete-contract-explainer/content/guam.md +180 -0
- package/skills/non-compete-contract-explainer/content/hawaii.md +236 -0
- package/skills/non-compete-contract-explainer/content/idaho.md +258 -0
- package/skills/non-compete-contract-explainer/content/illinois.md +266 -0
- package/skills/non-compete-contract-explainer/content/india.md +269 -0
- package/skills/non-compete-contract-explainer/content/indiana.md +253 -0
- package/skills/non-compete-contract-explainer/content/iowa.md +232 -0
- package/skills/non-compete-contract-explainer/content/kansas.md +227 -0
- package/skills/non-compete-contract-explainer/content/kentucky.md +201 -0
- package/skills/non-compete-contract-explainer/content/louisiana.md +272 -0
- package/skills/non-compete-contract-explainer/content/maine.md +178 -0
- package/skills/non-compete-contract-explainer/content/maryland.md +244 -0
- package/skills/non-compete-contract-explainer/content/massachusetts.md +272 -0
- package/skills/non-compete-contract-explainer/content/michigan.md +222 -0
- package/skills/non-compete-contract-explainer/content/minnesota.md +171 -0
- package/skills/non-compete-contract-explainer/content/mississippi.md +237 -0
- package/skills/non-compete-contract-explainer/content/missouri.md +219 -0
- package/skills/non-compete-contract-explainer/content/montana.md +202 -0
- package/skills/non-compete-contract-explainer/content/nebraska.md +206 -0
- package/skills/non-compete-contract-explainer/content/nevada.md +278 -0
- package/skills/non-compete-contract-explainer/content/new-hampshire.md +233 -0
- package/skills/non-compete-contract-explainer/content/new-jersey.md +277 -0
- package/skills/non-compete-contract-explainer/content/new-mexico.md +244 -0
- package/skills/non-compete-contract-explainer/content/new-york.md +226 -0
- package/skills/non-compete-contract-explainer/content/north-carolina.md +346 -0
- package/skills/non-compete-contract-explainer/content/north-dakota.md +187 -0
- package/skills/non-compete-contract-explainer/content/ohio.md +207 -0
- package/skills/non-compete-contract-explainer/content/oklahoma.md +196 -0
- package/skills/non-compete-contract-explainer/content/oregon.md +359 -0
- package/skills/non-compete-contract-explainer/content/pennsylvania.md +254 -0
- package/skills/non-compete-contract-explainer/content/philippines.md +211 -0
- package/skills/non-compete-contract-explainer/content/puerto-rico.md +163 -0
- package/skills/non-compete-contract-explainer/content/rhode-island.md +171 -0
- package/skills/non-compete-contract-explainer/content/singapore.md +229 -0
- package/skills/non-compete-contract-explainer/content/south-carolina.md +226 -0
- package/skills/non-compete-contract-explainer/content/south-dakota.md +222 -0
- package/skills/non-compete-contract-explainer/content/tennessee.md +251 -0
- package/skills/non-compete-contract-explainer/content/texas.md +297 -0
- package/skills/non-compete-contract-explainer/content/us-virgin-islands.md +193 -0
- package/skills/non-compete-contract-explainer/content/utah.md +250 -0
- package/skills/non-compete-contract-explainer/content/vermont.md +193 -0
- package/skills/non-compete-contract-explainer/content/virginia.md +213 -0
- package/skills/non-compete-contract-explainer/content/washington.md +296 -0
- package/skills/non-compete-contract-explainer/content/west-virginia.md +187 -0
- package/skills/non-compete-contract-explainer/content/wisconsin.md +293 -0
- package/skills/non-compete-contract-explainer/content/wyoming.md +55 -45
- package/skills/non-compete-contract-explainer/manifest.json +523 -1
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
---
|
|
2
|
+
jurisdiction: "Texas"
|
|
3
|
+
slug: texas
|
|
4
|
+
countryCode: US
|
|
5
|
+
snapshotAsOf: "2026-06-08"
|
|
6
|
+
lastReviewed: "2026-06-03"
|
|
7
|
+
canonicalUrl: https://openagreements.org/legal/non-compete/texas
|
|
8
|
+
license: CC BY 4.0
|
|
9
|
+
stale: false
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
> [!IMPORTANT]
|
|
13
|
+
> **Informational only — not legal advice.** This is a snapshot of an OpenAgreements practice note,
|
|
14
|
+
> provided for general information. It is not legal advice, does not create an attorney-client
|
|
15
|
+
> relationship, and is not a substitute for a licensed attorney in the relevant jurisdiction.
|
|
16
|
+
> Laws change; verify against the canonical version before relying on it.
|
|
17
|
+
>
|
|
18
|
+
> **Canonical:** https://openagreements.org/legal/non-compete/texas · **Snapshot as of:** 2026-06-08 · License: CC BY 4.0 · © UseJunior
|
|
19
|
+
|
|
20
|
+
# Non-Competes in Texas[^about]
|
|
21
|
+
|
|
22
|
+
A question-by-question summary of Texas non-compete law under the Covenants Not to Compete Act, Tex. Bus. & Com. Code §§ 15.50–15.52, including the ancillary-agreement requirement, the Light–Sheshunoff–Marsh consideration line, the reasonable time-geography-scope test, mandatory reformation of overbroad covenants, the pre-reformation damages bar, the attorney's-fee preemption question, the physician and SB 1318 health-care-practitioner limits, choice-of-law and forum rules, tolling, and trade-secret alternatives.
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## At a glance
|
|
26
|
+
|
|
27
|
+
| Question | Texas |
|
|
28
|
+
| --- | --- |
|
|
29
|
+
| **Are non-competes enforceable?** | Allowed if reasonable |
|
|
30
|
+
| **Bottom line** | Texas enforces non-competes that are ancillary to an otherwise enforceable agreement and reasonable in time, geography, and scope, with overbroad covenants reformed rather than voided. |
|
|
31
|
+
| **Main law or case** | Tex. Bus. & Com. Code § 15.50 (Covenants Not to Compete Act) |
|
|
32
|
+
| **Main exceptions** | Physician buyout/1-yr limits & good-cause rule (§ 15.50(b),(d)); dentist/nurse/PA buyout limits (§ 15.501) |
|
|
33
|
+
| **Can a court narrow it?** | Yes — rewrites to reasonable |
|
|
34
|
+
| **Applies to contractors?** | Unclear |
|
|
35
|
+
| **Restriction extended during a breach?** | Unsettled — any extension must satisfy § 15.50(a) reasonableness |
|
|
36
|
+
| **Maximum length set by law** | No statutory limit (1 year for covered physicians/health-care) |
|
|
37
|
+
|
|
38
|
+
## Are employee non-compete agreements enforceable in Texas? {#employee-noncompetes}
|
|
39
|
+
|
|
40
|
+
**Short answer.** Yes, within statutory limits. Texas is a reasonableness state: a non-compete is enforceable when it is ancillary to or part of an otherwise enforceable agreement and is limited as to time, geographic area, and scope of activity in a way that is reasonable and no broader than necessary to protect the employer's goodwill or other business interest [^bc-1550a-test].
|
|
41
|
+
|
|
42
|
+
Unlike states that void most worker non-competes outright, Texas enforces them when they satisfy a single statute, the Covenants Not to Compete Act, Tex. Bus. & Com. Code §§ 15.50–15.52. Section 15.50(a) states the core test, combining an *ancillary agreement* requirement with a reasonableness requirement.
|
|
43
|
+
|
|
44
|
+
"a covenant not to compete is enforceable if it is ancillary to or part of an otherwise enforceable agreement at the time the agreement is made to the extent that it contains limitations as to time, geographical area, and scope of activity to be restrained that are reasonable and do not impose a greater restraint than is necessary to protect the goodwill or other business interest of the promisee."[^bc-1550a-test]
|
|
45
|
+
|
|
46
|
+
Both halves of that sentence carry weight. A covenant that is reasonable in its limits still fails if it is not tied to an otherwise enforceable agreement, and a covenant that is properly ancillary still fails to the extent its limits are unreasonable. The sections that follow walk through how Texas courts apply each requirement.
|
|
47
|
+
|
|
48
|
+
## What framework governs Texas non-competes, and does it displace the common law? {#governing-framework}
|
|
49
|
+
|
|
50
|
+
**Short answer.** The Covenants Not to Compete Act governs, and it is exclusive. The criteria in §§ 15.50 and 15.501 and the procedures and remedies in § 15.51 preempt other law, including the common law, so a Texas non-compete dispute is decided under the statute rather than under judge-made rules [^bc-1552-preempt].
|
|
51
|
+
|
|
52
|
+
Texas once analyzed non-competes under common-law reasonableness doctrine. The Act replaced that body of law with a statutory test and made the replacement explicit in § 15.52.
|
|
53
|
+
|
|
54
|
+
"The criteria for enforceability of a covenant not to compete provided by Sections 15.50 and 15.501 and the procedures and remedies in an action to enforce a covenant not to compete provided by Section 15.51 are exclusive and preempt other law, including common law."[^bc-1552-preempt]
|
|
55
|
+
|
|
56
|
+
The preemption clause is more than housekeeping. It is the reason a Texas court will not graft a common-law gloss onto the statutory test, and it sits at the center of the unsettled attorney's-fee question discussed below. When you analyze a Texas covenant, start and end with the statute and the cases construing it.
|
|
57
|
+
|
|
58
|
+
## What consideration must support a Texas non-compete? {#consideration}
|
|
59
|
+
|
|
60
|
+
**Short answer.** Consideration that is reasonably related to a business interest the Act protects. Since *Marsh USA Inc. v. Cook*, the consideration supporting the covenant need only be reasonably related to an interest worthy of protection, such as goodwill, and it need not itself give rise to the employer's interest [^marsh-reasonably-related]. The older, stricter framing in *Light v. Centel* has been relaxed [^light-ancillary].
|
|
61
|
+
|
|
62
|
+
The consideration question has a long doctrinal history in Texas. In *Light v. Centel Cellular Co. of Texas*, the Texas Supreme Court read the ancillary requirement strictly and held that the covenant before it was not tied to the parties' otherwise enforceable agreement [^light-ancillary].
|
|
63
|
+
|
|
64
|
+
"Although Light and United did have an otherwise enforceable agreement between them, the covenant was not ancillary to or a part of that otherwise enforceable agreement."[^light-ancillary]
|
|
65
|
+
|
|
66
|
+
The court relaxed that approach in *Marsh USA Inc. v. Cook*, holding that consideration in the form of stock options was reasonably related to the company's interest in protecting its goodwill, which the Act recognizes as worthy of protection [^marsh-reasonably-related].
|
|
67
|
+
|
|
68
|
+
"We hold that, under the terms of the Covenants Not to Compete Act (Act), the consideration for the noncompete agreement (stock options) is reasonably related to the company's interest in protecting its goodwill, a business interest the Act recognizes as worthy of protection."[^marsh-reasonably-related]
|
|
69
|
+
|
|
70
|
+
The practical upshot from these cases is that consideration tied to a protectable interest, such as stock options connected to goodwill or promised confidential information that is actually provided, can support a Texas covenant. What is risky is relying on nothing more than continued at-will employment, because a promise the employer can revoke at any moment raises the illusory-promise problem the next question addresses.
|
|
71
|
+
|
|
72
|
+
## When does an at-will employee's non-compete become enforceable? {#at-will-enforceability}
|
|
73
|
+
|
|
74
|
+
**Short answer.** When the employer performs its side of the bargain. An at-will covenant that looks illusory at signing becomes enforceable once the employer actually delivers the promised consideration, such as confidential information [^sheshunoff-performance]. And where the job by its nature requires confidential information, the employer's promise to provide it can be implied [^mann-frankfort-implied].
|
|
75
|
+
|
|
76
|
+
The illusory-promise problem arises because an at-will employer can fire the employee at any moment, so a promise tied to continued employment may appear unenforceable when made. In *Alex Sheshunoff Management Services, L.P. v. Johnson*, the Texas Supreme Court resolved this by focusing on performance rather than the moment of signing [^sheshunoff-performance].
|
|
77
|
+
|
|
78
|
+
"The fact that the employer was not bound to perform because he could have fired the employee is irrelevant; if he has performed, he has accepted the employee's offer and created a binding unilateral contract."[^sheshunoff-performance]
|
|
79
|
+
|
|
80
|
+
The court went further in *Mann Frankfort Stein & Lipp Advisors, Inc. v. Fielding*, holding that when the nature of the work necessarily requires the employer to supply confidential information, a promise to provide it can be implied even if the contract does not spell it out [^mann-frankfort-implied].
|
|
81
|
+
|
|
82
|
+
"When the nature of the work the employee is hired to perform requires confidential information to be provided for the work to be performed by the employee, the employer impliedly promises confidential information will be provided."[^mann-frankfort-implied]
|
|
83
|
+
|
|
84
|
+
For drafting, the lesson is to make the consideration concrete and to actually deliver it. An agreement that expressly promises access to confidential information, training, or equity, and that the employer honors, stands on far firmer ground than one resting on continued employment alone.
|
|
85
|
+
|
|
86
|
+
## What time, geography, and scope limits are reasonable in Texas? {#reasonable-scope}
|
|
87
|
+
|
|
88
|
+
**Short answer.** Limits tailored to the employer's actual protectable interest, no broader than necessary. The Act requires reasonable limits on time, geographic area, and scope of activity, and a restraint greater than needed to protect goodwill or another business interest is unreasonable [^q5-bc-1550a-scope]. There are no fixed numeric ceilings outside the health-care provisions; reasonableness is fact-specific.
|
|
89
|
+
|
|
90
|
+
Texas does not publish bright-line maximums for ordinary covenants. Instead, § 15.50(a) ties every limit back to the employer's protectable interest, and § 15.51 lets a court cut anything that exceeds it [^q5-bc-1550a-scope].
|
|
91
|
+
|
|
92
|
+
"a covenant not to compete is enforceable if it is ancillary to or part of an otherwise enforceable agreement at the time the agreement is made to the extent that it contains limitations as to time, geographical area, and scope of activity to be restrained that are reasonable and do not impose a greater restraint than is necessary to protect the goodwill or other business interest of the promisee."[^q5-bc-1550a-scope]
|
|
93
|
+
|
|
94
|
+
Texas publishes no numeric ceiling for ordinary covenants, so reasonableness is assessed case by case against the employer's actual protectable interest. As a practical matter, a restraint keyed to where the employee actually worked or where the employer competes, and a scope tied to the specific customers the employee served or the specific line of business, is easier to defend than a blanket bar on working anywhere in the industry, because the Act requires the restraint to be no greater than necessary [^q5-bc-1550a-scope]. Texas courts generally analyze customer non-solicitation clauses under the same Act and the same reasonableness test rather than a separate, looser standard [^q5-bc-1550a-scope].
|
|
95
|
+
|
|
96
|
+
> [!CAUTION]
|
|
97
|
+
> **Drafting note.**
|
|
98
|
+
>
|
|
99
|
+
> Do not assume a covenant that bars an employee from an entire industry across a wide region will be enforced. The Act requires the restraint to be no greater than necessary to protect a specific business interest, and an overbroad covenant is exposed to reformation down to the minimum a court finds reasonable [^q5-bc-1550a-scope].
|
|
100
|
+
|
|
101
|
+
## Will a Texas court reform an overbroad non-compete instead of voiding it? {#reformation}
|
|
102
|
+
|
|
103
|
+
**Short answer.** Yes, reformation is mandatory. If a covenant is ancillary to an otherwise enforceable agreement but its limits are unreasonable, the court shall reform it to the minimum reasonable restraint and enforce it as reformed [^bc-1551c-reform]. A federal court applying Texas law has said reformation should be considered even at the preliminary-injunction stage [^calhoun-pi-reform].
|
|
104
|
+
|
|
105
|
+
Texas is a true reformation state, and the statute uses mandatory language. Under § 15.51(c), a court faced with an overbroad-but-ancillary covenant does not simply void it; it rewrites the limits and enforces the narrowed version [^bc-1551c-reform].
|
|
106
|
+
|
|
107
|
+
"the court shall reform the covenant to the extent necessary to cause the limitations contained in the covenant as to time, geographical area, and scope of activity to be restrained to be reasonable and to impose a restraint that is not greater than necessary to protect the goodwill or other business interest of the promisee and enforce the covenant as reformed, except that the court may not award the promisee damages for a breach of the covenant before its reformation and the relief granted to the promisee shall be limited to injunctive relief."[^bc-1551c-reform]
|
|
108
|
+
|
|
109
|
+
On timing, in a Fifth Circuit opinion that was later withdrawn as moot after the parties settled, *Calhoun v. Jack Doheny Cos.* indicated that a district court should consider reformation as part of deciding a preliminary-injunction motion, rather than deferring it to a later stage [^calhoun-pi-reform]. Because the opinion was withdrawn, treat it as persuasive context rather than binding precedent.
|
|
110
|
+
|
|
111
|
+
"As we shall show, it should have considered reformation of the agreement in the process of deciding the preliminary injunction motion."[^calhoun-pi-reform]
|
|
112
|
+
|
|
113
|
+
Because reformation is the default, the strategic calculus in Texas differs from no-reformation states. An overbroad Texas covenant is usually not a total loss for the employer; it is more often trimmed. But, as the next question explains, overbreadth carries its own price in the remedies the employer can recover.
|
|
114
|
+
|
|
115
|
+
> [!NOTE]
|
|
116
|
+
> **Practice note.**
|
|
117
|
+
>
|
|
118
|
+
> Do not treat reformation as a free safety net for an intentionally overbroad covenant. Section 15.51(c) bars damages for any breach occurring before reformation and limits the employer to injunctive relief, and the same subsection separately lets an employer that knowingly over-enforced an overbroad covenant be charged with the employee's defense fees, as the attorney's-fee question explains [^bc-1551c-reform][^calhoun-pi-reform].
|
|
119
|
+
|
|
120
|
+
## What remedies apply, and who bears the burden of proof? {#remedies-burden}
|
|
121
|
+
|
|
122
|
+
**Short answer.** Damages and injunctive relief, but with limits, and the burden depends on the contract's purpose. A court may award the employer damages, injunctive relief, or both [^bc-1551a-remedies], yet no damages are available for a breach before an overbroad covenant is reformed [^q7-bc-1551c-damages]. In a personal-services contract, the employer bears the burden of proving the covenant meets the § 15.50 criteria [^bc-1551b-burden].
|
|
123
|
+
|
|
124
|
+
Section 15.51 sets both the menu of remedies and the allocation of proof. The statute authorizes damages, injunctive relief, or both for breach of an enforceable covenant [^bc-1551a-remedies]. The most consequential limit is the pre-reformation damages bar: if a covenant has to be reformed because it was overbroad, the employer cannot recover damages for breaches that happened before the reformation and is confined to injunctive relief [^q7-bc-1551c-damages].
|
|
125
|
+
|
|
126
|
+
The burden of proof then turns on what the agreement is mainly for. Under § 15.51(b), if the agreement's primary purpose is to obligate the worker to render personal services, the employer must prove the covenant satisfies § 15.50 [^bc-1551b-burden].
|
|
127
|
+
|
|
128
|
+
"If the primary purpose of the agreement to which the covenant is ancillary is to obligate the promisor to render personal services, for a term or at will, the promisee has the burden of establishing that the covenant meets the criteria specified by Section 15.50 of this code."[^bc-1551b-burden]
|
|
129
|
+
|
|
130
|
+
That allocation matters because most employee covenants are ancillary to personal-services agreements, so the employer carries the burden. Where the agreement has a different primary purpose, such as a sale of a business, § 15.51(b) flips the burden: the promisor must establish that the covenant does not meet the statutory criteria [^bc-1551b-burden-flip].
|
|
131
|
+
|
|
132
|
+
## Can a party recover attorney's fees in a Texas non-compete dispute? {#attorneys-fees}
|
|
133
|
+
|
|
134
|
+
**Short answer.** Partly, and only one way. The Act has no general prevailing-party fee rule, but § 15.51(c) lets a court award the employee defense costs and attorney's fees where the employer knew the covenant was overbroad and tried to over-enforce it [^bc-1551c-fee-shift]. Whether the general contract-fee statute can supply fees for enforcing a covenant despite § 15.52's exclusivity is unresolved on the authorities here [^q8-bc-1552-preempt], and a parallel trade-secret claim has its own fee path [^tutsa-fees].
|
|
135
|
+
|
|
136
|
+
The Act itself contains one express, one-directional fee rule. Under § 15.51(c), in a personal-services covenant case, if the employee proves the employer knew at signing that the covenant's limits were unreasonable and nonetheless sought to enforce it beyond what was necessary, the court may award the employee its defense costs and reasonable attorney's fees [^bc-1551c-fee-shift].
|
|
137
|
+
|
|
138
|
+
"the court may award the promisor the costs, including reasonable attorney's fees, actually and reasonably incurred by the promisor in defending the action to enforce the covenant."[^bc-1551c-fee-shift]
|
|
139
|
+
|
|
140
|
+
What the Act does not supply is a general prevailing-party fee award for the employer that wins enforcement. Because § 15.52 makes the Act's remedies exclusive [^q8-bc-1552-preempt], whether the general breach-of-contract fee statute, Tex. Civ. Prac. & Rem. Code ch. 38, can fill that gap is contested and not resolved by the authorities collected here, so an employer should not count on recovering its fees.
|
|
141
|
+
|
|
142
|
+
"The criteria for enforceability of a covenant not to compete provided by Sections 15.50 and 15.501 and the procedures and remedies in an action to enforce a covenant not to compete provided by Section 15.51 are exclusive and preempt other law, including common law."[^q8-bc-1552-preempt]
|
|
143
|
+
|
|
144
|
+
Employers often pair a non-compete claim with a trade-secret claim precisely because the Texas Uniform Trade Secrets Act has its own fee-shifting rule. Under § 134A.005, a court may award reasonable attorney's fees to the prevailing party in defined circumstances, including willful and malicious misappropriation [^tutsa-fees].
|
|
145
|
+
|
|
146
|
+
"The court may award reasonable attorney's fees to the prevailing party if: (1) a claim of misappropriation is made in bad faith; (2) a motion to terminate an injunction is made or resisted in bad faith; or (3) willful and malicious misappropriation exists."[^tutsa-fees]
|
|
147
|
+
|
|
148
|
+
> [!NOTE]
|
|
149
|
+
> **Practice note.**
|
|
150
|
+
>
|
|
151
|
+
> Do not promise an employer client that it will recover its attorney's fees by winning enforcement of a Texas non-compete. The Act's only express fee rule under § 15.51(c) runs to the employee, and whether chapter 38 supplies fees for enforcement despite § 15.52's exclusivity is unresolved, so employer fee recovery should be treated as uncertain and, where possible, anchored to a separate claim such as trade-secret misappropriation [^bc-1551c-fee-shift][^q8-bc-1552-preempt][^tutsa-fees].
|
|
152
|
+
|
|
153
|
+
## What special rules apply to Texas physician non-competes? {#physician-noncompetes}
|
|
154
|
+
|
|
155
|
+
**Short answer.** Several statutory conditions, plus a 2025 good-cause rule. A physician covenant is enforceable only if it meets § 15.50(b)'s conditions, including a buyout capped at the physician's total annual salary and wages [^bc-1550b-buyout]. As amended by SB 1318, a physician covenant is void if the physician is involuntarily discharged without good cause [^bc-1550d-goodcause].
|
|
156
|
+
|
|
157
|
+
Texas has regulated physician non-competes for decades through § 15.50(b), which layers specific requirements on top of the general test, including patient-list access, medical-record access, continuity-of-care protection, and a buyout option. The buyout cap is a defining feature: the covenant must let the physician buy out of the restraint for no more than the physician's total annual salary and wages at the time of termination [^bc-1550b-buyout].
|
|
158
|
+
|
|
159
|
+
Senate Bill 1318, effective September 1, 2025, tightened these rules. Among other changes, it added a good-cause condition: a physician non-compete is void and unenforceable if the physician is involuntarily discharged without good cause [^bc-1550d-goodcause].
|
|
160
|
+
|
|
161
|
+
"a covenant not to compete relating to the practice of medicine is void and unenforceable against a person licensed as a physician by the Texas Medical Board if the physician is involuntarily discharged from contract or employment without good cause."[^bc-1550d-goodcause]
|
|
162
|
+
|
|
163
|
+
The statute supplies its own definition. Good cause means a reasonable basis for discharge that is directly related to the physician's conduct, job performance, or employment record, so a discharge for genuine performance or conduct problems can leave the covenant intact, while a no-fault termination cannot [^bc-1550d-goodcause].
|
|
164
|
+
|
|
165
|
+
Section 15.50(b) also caps a physician covenant at a one-year duration and a five-mile radius from the physician's primary practice location and requires the terms to be clearly and conspicuously stated in writing [^bc-1550b4-limits]. Those are statutory ceilings for the covered physician covenant, not a safe harbor that makes any covenant within them automatically reasonable in other contexts. A separate carve-out protects ownership: the physician requirements do not apply to a physician's business ownership interest in a licensed hospital or licensed ambulatory surgical center [^bc-1550c-ownership]. And for integrated-care structures, the statute provides that practicing medicine, for these purposes, does not include managing or directing medical services in an administrative capacity [^bc-1550b1-admin], which preserves room for certain management arrangements.
|
|
166
|
+
|
|
167
|
+
"the practice of medicine does not include managing or directing medical services in an administrative capacity for a medical practice or other health care provider."[^bc-1550b1-admin]
|
|
168
|
+
|
|
169
|
+
> [!NOTE]
|
|
170
|
+
> **Practice note.**
|
|
171
|
+
>
|
|
172
|
+
> Do not reuse a general Texas non-compete for a physician. Section 15.50(b) requires patient-list and record access, continuity-of-care terms, and a salary-capped buyout, and since September 1, 2025 the covenant is void if the physician is fired without good cause [^bc-1550b-buyout][^bc-1550d-goodcause].
|
|
173
|
+
|
|
174
|
+
## What does SB 1318 require for dentists, nurses, and physician assistants? {#health-care-practitioners}
|
|
175
|
+
|
|
176
|
+
**Short answer.** A new statutory cap, effective September 1, 2025. Section 15.501, added by SB 1318, makes a non-compete unenforceable against a dentist, professional or vocational nurse, or physician assistant unless it provides a salary-capped buyout, expires within one year, is limited to a five-mile radius, and is clearly and conspicuously in writing [^bc-15501-hcp].
|
|
177
|
+
|
|
178
|
+
Before 2025, the statutory buyout-and-limits regime applied chiefly to physicians. SB 1318 extended a parallel set of limits to a broader group of health-care practitioners by enacting § 15.501, effective September 1, 2025 [^bc-15501-hcp]. The section defines that group precisely as licensed dentists, professional or vocational nurses, and physician assistants [^bc-15501a-def].
|
|
179
|
+
|
|
180
|
+
"A covenant not to compete relating to the practice of dentistry or nursing, or practice as a physician assistant, as applicable, is not enforceable against a health care practitioner unless the covenant: (1) provides for a buyout of the covenant by the health care practitioner in an amount that is not greater than the practitioner's total annual salary and wages at the time of termination of the practitioner's contract or employment; (2) expires not later than the one-year anniversary of the date the contract or employment has been terminated; (3) limits the geographical area subject to the covenant to no more than a five-mile radius from the location at which the health care practitioner primarily practiced before the contract or employment terminated; and (4) has terms and conditions that are clearly and conspicuously stated in writing."[^bc-15501-hcp]
|
|
181
|
+
|
|
182
|
+
These four requirements mirror the physician buyout, one-year, and five-mile structure, so an employer that already complies with the physician rules has a template for the broader group. Because § 15.501 is new, added by SB 1318 effective September 1, 2025, there is little appellate gloss yet on terms like *primarily practiced*, and practitioners and employers should expect open questions until courts interpret it.
|
|
183
|
+
|
|
184
|
+
> [!NOTE]
|
|
185
|
+
> **Practice note.**
|
|
186
|
+
>
|
|
187
|
+
> Do not apply an unlimited or out-of-state non-compete to a Texas dentist, nurse, or physician assistant on or after September 1, 2025. Section 15.501 makes such a covenant unenforceable unless it includes a salary-capped buyout, a one-year expiry, a five-mile limit, and clear, conspicuous written terms [^bc-15501-hcp].
|
|
188
|
+
|
|
189
|
+
## Can a choice-of-law or forum-selection clause change the outcome in Texas? {#choice-of-law-forum}
|
|
190
|
+
|
|
191
|
+
**Short answer.** Sometimes for forum, rarely to escape Texas policy. Texas courts will enforce a mandatory forum-selection clause through mandamus [^autonation-forum]. But Texas treats enforcement of non-competes as a matter of fundamental policy, and in *DeSantis v. Wackenhut* the court applied Texas law, not the contractually chosen law, and found the covenant unenforceable [^desantis-texas-law].
|
|
192
|
+
|
|
193
|
+
Multistate employers often try to select a more favorable state's law or a particular forum. The two devices fare differently in Texas. A forum-selection clause is generally enforceable; in *In re AutoNation, Inc.*, the Texas Supreme Court used mandamus to enforce a mandatory forum-selection clause in a non-compete dispute [^autonation-forum].
|
|
194
|
+
|
|
195
|
+
"AutoNation now seeks mandamus relief to enforce the mandatory forum-selection clause, and we conditionally grant it."[^autonation-forum]
|
|
196
|
+
|
|
197
|
+
A choice-of-law clause is harder to use as an end-run around Texas policy. In *DeSantis v. Wackenhut Corp.*, the Texas Supreme Court refused to apply the contract's chosen law where doing so would offend Texas's fundamental policy on covenants not to compete [^desantis-texas-law].
|
|
198
|
+
|
|
199
|
+
"We hold that Texas law, not Florida law, applies in this case, and that under Texas law, the noncompetition agreement is unenforceable."[^desantis-texas-law]
|
|
200
|
+
|
|
201
|
+
The federal courts apply the same conflicts analysis. In *Cardoni v. Prosperity Bank*, the Fifth Circuit walked through the Texas-versus-other-state policy comparison, noting that Texas generally permits covenants that are reasonably limited in time and geography [^cardoni-conflicts]. The combined lesson is that forum clauses tend to hold, while a choice-of-law clause selecting a more employer-friendly state may yield to Texas policy when a Texas worker and Texas interests are involved, and conversely Texas policy may yield where another state's fundamental policy controls.
|
|
202
|
+
|
|
203
|
+
## Does a tolling clause extend a Texas non-compete during breach or litigation? {#tolling-during-breach}
|
|
204
|
+
|
|
205
|
+
**Short answer.** Texas law does not clearly bless contractual tolling. No Texas statute or Texas Supreme Court decision squarely authorizes extending a non-compete's clock for the time an employee spent breaching or litigating, and any such extension still has to satisfy the Act's reasonableness limit [^q12-bc-1550a-reasonable]. The more dependable protection against ongoing violations is injunctive relief, which the Act expressly authorizes [^q12-bc-1551a-injunction].
|
|
206
|
+
|
|
207
|
+
Many national templates add a tolling clause so the employer gets the full benefit of the restricted period even if the former employee competes during it. Texas has no statute on point, and the question is best treated as unsettled. Whatever a tolling clause says, the resulting restraint must still be reasonable under § 15.50(a); a clause that effectively extends the restriction for an indefinite period of breach or litigation is in tension with the requirement that the limit on time be reasonable and no greater than necessary [^q12-bc-1550a-reasonable].
|
|
208
|
+
|
|
209
|
+
"a covenant not to compete is enforceable if it is ancillary to or part of an otherwise enforceable agreement at the time the agreement is made to the extent that it contains limitations as to time, geographical area, and scope of activity to be restrained that are reasonable and do not impose a greater restraint than is necessary to protect the goodwill or other business interest of the promisee."[^q12-bc-1550a-reasonable]
|
|
210
|
+
|
|
211
|
+
In practice, rather than relying on a contractual tolling provision, a Texas employer can seek injunctive relief, which the Act authorizes for breach of an enforceable covenant [^q12-bc-1551a-injunction]; an injunction running from the date of the order can effectively extend protection past the covenant's nominal end date when violations are ongoing. There is no Texas Supreme Court decision squarely approving or rejecting a contractual tolling clause, so this conclusion rests on the statutory reasonableness requirement and the availability of injunctive relief rather than a case directly on tolling.
|
|
212
|
+
|
|
213
|
+
> [!CAUTION]
|
|
214
|
+
> **Drafting note.**
|
|
215
|
+
>
|
|
216
|
+
> Do not assume a Texas court will add back time to a non-compete for a period of breach or litigation based on a tolling clause. Texas law is unsettled on contractual tolling, and any extended restraint still must satisfy § 15.50(a)'s reasonableness limit, so the more reliable path is to seek injunctive relief for ongoing violations [^q12-bc-1550a-reasonable].
|
|
217
|
+
|
|
218
|
+
## Are trade-secret and confidentiality protections available in Texas? {#trade-secrets}
|
|
219
|
+
|
|
220
|
+
**Short answer.** Yes. The Texas Uniform Trade Secrets Act lets a court enjoin actual or threatened misappropriation, independent of any covenant [^tutsa-injunction]. A confidentiality agreement is also available, but it cannot be drafted so broadly that it functions as a disguised non-compete and triggers the Act's reasonableness test [^q13-bc-1550a-disguised].
|
|
221
|
+
|
|
222
|
+
Because covenant enforcement carries the reformation and damages limits discussed above, Texas employers frequently lean on trade-secret and confidentiality protections as a complement. The Texas Uniform Trade Secrets Act provides injunctive relief that does not depend on any non-compete [^tutsa-injunction].
|
|
223
|
+
|
|
224
|
+
"Actual or threatened misappropriation may be enjoined if the order does not prohibit a person from using general knowledge, skill, and experience that person acquired during employment."[^tutsa-injunction]
|
|
225
|
+
|
|
226
|
+
That statutory carve-out for *general knowledge, skill, and experience* is important: a trade-secret injunction protects genuine secrets, not the ordinary expertise an employee carries to a new job [^tutsa-injunction]. Beyond an injunction, the Act also lets a claimant recover damages for misappropriation [^tutsa-damages]. A non-disclosure agreement complements these protections by contract, and the Act leaves contractual remedies in place whether or not they rest on trade-secret misappropriation [^tutsa-contract-remedies]. But an NDA is not a way around § 15.50: a confidentiality clause drafted so broadly that it effectively bars the former employee from working in the field invites a court to treat it as a non-compete and apply the Act's reasonableness test [^q13-bc-1550a-disguised].
|
|
227
|
+
|
|
228
|
+
> [!CAUTION]
|
|
229
|
+
> **Drafting note.**
|
|
230
|
+
>
|
|
231
|
+
> Do not draft a Texas confidentiality or non-disclosure clause so broadly that it operates as a covert non-compete. The trade-secret statute supports an injunction against misappropriation but excludes general knowledge, skill, and experience, and an NDA that effectively prevents the employee from working can be recharacterized as a non-compete subject to § 15.50 [^tutsa-injunction][^q13-bc-1550a-disguised].
|
|
232
|
+
|
|
233
|
+
[^about]: By Steven Obiajulu, J.D. Published by [openagreements.org](https://openagreements.org) · Maintained by [UseJunior](https://usejunior.com). Last reviewed 2026-06-03. License: CC BY 4.0. Steven Obiajulu, J.D. is admitted in New York, not Texas. This article synthesizes Texas primary law and is not legal advice from a Texas-admitted attorney. This article is for informational purposes only and does not create an attorney-client relationship.
|
|
234
|
+
|
|
235
|
+
[^bc-1550a-test]: **Tex. Bus. & Com. Code § 15.50** — "a covenant not to compete is enforceable if it is ancillary to or part of an otherwise enforceable agreement at the time the agreement is made to the extent that it contains limitations as to time, geographical area, and scope of activity to be restrained that are reasonable and do not impose a greater restraint than is necessary to protect the goodwill or other business interest of the promisee." *Tex. Bus. & Com. Code § 15.50(a).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
236
|
+
|
|
237
|
+
[^bc-1552-preempt]: **Tex. Bus. & Com. Code § 15.52** — "The criteria for enforceability of a covenant not to compete provided by Sections 15.50 and 15.501 and the procedures and remedies in an action to enforce a covenant not to compete provided by Section 15.51 are exclusive and preempt other law, including common law." *Tex. Bus. & Com. Code § 15.52.* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
238
|
+
|
|
239
|
+
[^marsh-reasonably-related]: **Marsh USA Inc. v. Cook** — "We hold that, under the terms of the Covenants Not to Compete Act (Act), the consideration for the noncompete agreement (stock options) is reasonably related to the company's interest in protecting its goodwill, a business interest the Act recognizes as worthy of protection." *Marsh USA Inc. v. Cook, 354 S.W.3d 764 (Tex. 2011).* <https://www.courtlistener.com/opinion/2541088/marsh-usa-inc-v-cook/#:~:text=We%20hold%20that%2C%20under%20the,recognizes%20as%20worthy%20of%20protection.>
|
|
240
|
+
|
|
241
|
+
[^light-ancillary]: **Light v. Centel Cellular Co. of Texas** — "Although Light and United did have an otherwise enforceable agreement between them, the covenant was not ancillary to or a part of that otherwise enforceable agreement." *Light v. Centel Cellular Co. of Tex., 883 S.W.2d 642 (Tex. 1994).* <https://www.courtlistener.com/opinion/1525150/light-v-centel-cellular-co-of-texas/#:~:text=Although%20Light%20and%20United%20did,of%20that%20otherwise%20enforceable%20agreement.>
|
|
242
|
+
|
|
243
|
+
[^sheshunoff-performance]: **Alex Sheshunoff Management Services, L.P. v. Johnson** — "The fact that the employer was not bound to perform because he could have fired the employee is irrelevant; if he has performed, he has accepted the employee's offer and created a binding unilateral contract." *Alex Sheshunoff Mgmt. Servs., L.P. v. Johnson, 209 S.W.3d 644 (Tex. 2006).* <https://www.courtlistener.com/opinion/894789/alex-sheshunoff-management-services-lp-v-johnson/#:~:text=The%20fact%20that%20the%20employer,created%20a%20binding%20unilateral%20contract.>
|
|
244
|
+
|
|
245
|
+
[^mann-frankfort-implied]: **Mann Frankfort Stein & Lipp Advisors, Inc. v. Fielding** — "When the nature of the work the employee is hired to perform requires confidential information to be provided for the work to be performed by the employee, the employer impliedly promises confidential information will be provided." *Mann Frankfort Stein & Lipp Advisors, Inc. v. Fielding, 289 S.W.3d 844 (Tex. 2009).* <https://www.courtlistener.com/opinion/895104/mann-frankfort-stein-lipp-advisors-inc-v-fielding/#:~:text=When%20the%20nature%20of%20the,confidential%20information%20will%20be%20provided.>
|
|
246
|
+
|
|
247
|
+
[^q5-bc-1550a-scope]: **Tex. Bus. & Com. Code § 15.50** — "a covenant not to compete is enforceable if it is ancillary to or part of an otherwise enforceable agreement at the time the agreement is made to the extent that it contains limitations as to time, geographical area, and scope of activity to be restrained that are reasonable and do not impose a greater restraint than is necessary to protect the goodwill or other business interest of the promisee." *Tex. Bus. & Com. Code § 15.50(a).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
248
|
+
|
|
249
|
+
[^bc-1551c-reform]: **Tex. Bus. & Com. Code § 15.51** — "the court shall reform the covenant to the extent necessary to cause the limitations contained in the covenant as to time, geographical area, and scope of activity to be restrained to be reasonable and to impose a restraint that is not greater than necessary to protect the goodwill or other business interest of the promisee and enforce the covenant as reformed, except that the court may not award the promisee damages for a breach of the covenant before its reformation and the relief granted to the promisee shall be limited to injunctive relief." *Tex. Bus. & Com. Code § 15.51(c).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
250
|
+
|
|
251
|
+
[^calhoun-pi-reform]: **Calhoun v. Jack Doheny Companies, Inc.** — "As we shall show, it should have considered reformation of the agreement in the process of deciding the preliminary injunction motion." *Calhoun v. Jack Doheny Cos., 969 F.3d 232 (5th Cir. 2020) (later withdrawn as moot).* <https://www.courtlistener.com/opinion/4773823/donald-calhoun-v-jack-doheny-companies-inc/#:~:text=As%20we%20shall%20show%2C%20it,deciding%20the%20preliminary%20injunction%20motion.>
|
|
252
|
+
|
|
253
|
+
[^bc-1551a-remedies]: **Tex. Bus. & Com. Code § 15.51** — "a court may award the promisee under a covenant not to compete damages, injunctive relief, or both damages and injunctive relief for a breach by the promisor of the covenant." *Tex. Bus. & Com. Code § 15.51(a).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
254
|
+
|
|
255
|
+
[^q7-bc-1551c-damages]: **Tex. Bus. & Com. Code § 15.51** — "the court may not award the promisee damages for a breach of the covenant before its reformation and the relief granted to the promisee shall be limited to injunctive relief." *Tex. Bus. & Com. Code § 15.51(c).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
256
|
+
|
|
257
|
+
[^bc-1551b-burden]: **Tex. Bus. & Com. Code § 15.51** — "If the primary purpose of the agreement to which the covenant is ancillary is to obligate the promisor to render personal services, for a term or at will, the promisee has the burden of establishing that the covenant meets the criteria specified by Section 15.50 of this code." *Tex. Bus. & Com. Code § 15.51(b).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
258
|
+
|
|
259
|
+
[^bc-1551b-burden-flip]: **Tex. Bus. & Com. Code § 15.51** — "If the agreement has a different primary purpose, the promisor has the burden of establishing that the covenant does not meet those criteria." *Tex. Bus. & Com. Code § 15.51(b).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
260
|
+
|
|
261
|
+
[^bc-1551c-fee-shift]: **Tex. Bus. & Com. Code § 15.51** — "the court may award the promisor the costs, including reasonable attorney's fees, actually and reasonably incurred by the promisor in defending the action to enforce the covenant." *Tex. Bus. & Com. Code § 15.51(c).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
262
|
+
|
|
263
|
+
[^q8-bc-1552-preempt]: **Tex. Bus. & Com. Code § 15.52** — "The criteria for enforceability of a covenant not to compete provided by Sections 15.50 and 15.501 and the procedures and remedies in an action to enforce a covenant not to compete provided by Section 15.51 are exclusive and preempt other law, including common law." *Tex. Bus. & Com. Code § 15.52.* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
264
|
+
|
|
265
|
+
[^tutsa-fees]: **Tex. Civ. Prac. & Rem. Code § 134A.005** — "The court may award reasonable attorney's fees to the prevailing party if: (1) a claim of misappropriation is made in bad faith; (2) a motion to terminate an injunction is made or resisted in bad faith; or (3) willful and malicious misappropriation exists." *Tex. Civ. Prac. & Rem. Code § 134A.005.* <https://statutes.capitol.texas.gov/Docs/CP/htm/CP.134A.htm>
|
|
266
|
+
|
|
267
|
+
[^bc-1550b-buyout]: **Tex. Bus. & Com. Code § 15.50** — "the covenant must provide for a buyout of the covenant by the physician in an amount that is not greater than the physician's total annual salary and wages at the time of termination of the contract or employment;" *Tex. Bus. & Com. Code § 15.50(b)(2).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
268
|
+
|
|
269
|
+
[^bc-1550d-goodcause]: **Tex. Bus. & Com. Code § 15.50** — "a covenant not to compete relating to the practice of medicine is void and unenforceable against a person licensed as a physician by the Texas Medical Board if the physician is involuntarily discharged from contract or employment without good cause. For purposes of this subsection, ‘good cause’ means a reasonable basis for discharge of a physician from contract or employment that is directly related to the physician's conduct, including the physician's conduct on the job or otherwise, job performance, and contract or employment record." *Tex. Bus. & Com. Code § 15.50(d).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
270
|
+
|
|
271
|
+
[^bc-1550b4-limits]: **Tex. Bus. & Com. Code § 15.50** — "(A) expire not later than the one-year anniversary of the date the contract or employment has been terminated; (B) limit the geographical area subject to the covenant to no more than a five-mile radius from the location at which the physician primarily practiced before the contract or employment terminated; and (C) have terms and conditions clearly and conspicuously stated in writing." *Tex. Bus. & Com. Code § 15.50(b)(4).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
272
|
+
|
|
273
|
+
[^bc-1550c-ownership]: **Tex. Bus. & Com. Code § 15.50** — "Subsection (b) does not apply to a physician's business ownership interest in a licensed hospital or licensed ambulatory surgical center." *Tex. Bus. & Com. Code § 15.50(c).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
274
|
+
|
|
275
|
+
[^bc-1550b1-admin]: **Tex. Bus. & Com. Code § 15.50** — "the practice of medicine does not include managing or directing medical services in an administrative capacity for a medical practice or other health care provider." *Tex. Bus. & Com. Code § 15.50(b-1).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
276
|
+
|
|
277
|
+
[^bc-15501-hcp]: **Tex. Bus. & Com. Code § 15.501** — "A covenant not to compete relating to the practice of dentistry or nursing, or practice as a physician assistant, as applicable, is not enforceable against a health care practitioner unless the covenant: (1) provides for a buyout of the covenant by the health care practitioner in an amount that is not greater than the practitioner's total annual salary and wages at the time of termination of the practitioner's contract or employment; (2) expires not later than the one-year anniversary of the date the contract or employment has been terminated; (3) limits the geographical area subject to the covenant to no more than a five-mile radius from the location at which the health care practitioner primarily practiced before the contract or employment terminated; and (4) has terms and conditions that are clearly and conspicuously stated in writing." *Tex. Bus. & Com. Code § 15.501(b).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
278
|
+
|
|
279
|
+
[^bc-15501a-def]: **Tex. Bus. & Com. Code § 15.501** — "(1) a person licensed by the State Board of Dental Examiners to practice dentistry in this state; (2) a person licensed under Chapter 301 , Occupations Code, to engage in professional or vocational nursing; or (3) a physician assistant licensed under Chapter 204 , Occupations Code." *Tex. Bus. & Com. Code § 15.501(a).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
280
|
+
|
|
281
|
+
[^autonation-forum]: **In re AutoNation, Inc.** — "AutoNation now seeks mandamus relief to enforce the mandatory forum-selection clause, and we conditionally grant it." *In re AutoNation, Inc., 228 S.W.3d 663 (Tex. 2007).* <https://www.courtlistener.com/opinion/894883/in-re-autonation-inc/#:~:text=AutoNation%20now%20seeks%20mandamus%20relief,and%20we%20conditionally%20grant%20it.>
|
|
282
|
+
|
|
283
|
+
[^desantis-texas-law]: **DeSantis v. Wackenhut Corp.** — "We hold that Texas law, not Florida law, applies in this case, and that under Texas law, the noncompetition agreement is unenforceable." *DeSantis v. Wackenhut Corp., 793 S.W.2d 670 (Tex. 1990).* <https://www.courtlistener.com/opinion/2376061/desantis-v-wackenhut-corp/#:~:text=We%20hold%20that%20Texas%20law%2C,the%20noncompetition%20agreement%20is%20unenforceable.>
|
|
284
|
+
|
|
285
|
+
[^cardoni-conflicts]: **Cardoni v. Prosperity Bank** — "Texas generally allows them so long as they are limited both geographically and temporally." *Cardoni v. Prosperity Bank, 805 F.3d 573 (5th Cir. 2015).* <https://www.courtlistener.com/opinion/3150844/chris-cardoni-v-prosperity-bank/#:~:text=Texas%20generally%20allows%20them%20so,limited%20both%20geographically%20and%20temporally.>
|
|
286
|
+
|
|
287
|
+
[^q12-bc-1550a-reasonable]: **Tex. Bus. & Com. Code § 15.50** — "a covenant not to compete is enforceable if it is ancillary to or part of an otherwise enforceable agreement at the time the agreement is made to the extent that it contains limitations as to time, geographical area, and scope of activity to be restrained that are reasonable and do not impose a greater restraint than is necessary to protect the goodwill or other business interest of the promisee." *Tex. Bus. & Com. Code § 15.50(a).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
288
|
+
|
|
289
|
+
[^q12-bc-1551a-injunction]: **Tex. Bus. & Com. Code § 15.51** — "a court may award the promisee under a covenant not to compete damages, injunctive relief, or both damages and injunctive relief for a breach by the promisor of the covenant." *Tex. Bus. & Com. Code § 15.51(a).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
290
|
+
|
|
291
|
+
[^tutsa-injunction]: **Tex. Civ. Prac. & Rem. Code § 134A.003** — "Actual or threatened misappropriation may be enjoined if the order does not prohibit a person from using general knowledge, skill, and experience that person acquired during employment." *Tex. Civ. Prac. & Rem. Code § 134A.003.* <https://statutes.capitol.texas.gov/Docs/CP/htm/CP.134A.htm>
|
|
292
|
+
|
|
293
|
+
[^q13-bc-1550a-disguised]: **Tex. Bus. & Com. Code § 15.50** — "a covenant not to compete is enforceable if it is ancillary to or part of an otherwise enforceable agreement at the time the agreement is made to the extent that it contains limitations as to time, geographical area, and scope of activity to be restrained that are reasonable and do not impose a greater restraint than is necessary to protect the goodwill or other business interest of the promisee." *Tex. Bus. & Com. Code § 15.50(a).* <https://statutes.capitol.texas.gov/Docs/BC/htm/BC.15.htm>
|
|
294
|
+
|
|
295
|
+
[^tutsa-damages]: **Tex. Civ. Prac. & Rem. Code § 134A.004** — "In addition to or in lieu of injunctive relief, a claimant is entitled to recover damages for misappropriation." *Tex. Civ. Prac. & Rem. Code § 134A.004(a).* <https://statutes.capitol.texas.gov/Docs/CP/htm/CP.134A.htm>
|
|
296
|
+
|
|
297
|
+
[^tutsa-contract-remedies]: **Tex. Civ. Prac. & Rem. Code § 134A.007** — "This chapter does not affect: (1) contractual remedies, whether or not based upon misappropriation of a trade secret" *Tex. Civ. Prac. & Rem. Code § 134A.007(b).* <https://statutes.capitol.texas.gov/Docs/CP/htm/CP.134A.htm>
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
---
|
|
2
|
+
jurisdiction: "U.S. Virgin Islands"
|
|
3
|
+
slug: us-virgin-islands
|
|
4
|
+
countryCode: US
|
|
5
|
+
snapshotAsOf: "2026-06-08"
|
|
6
|
+
lastReviewed: "2026-06-03"
|
|
7
|
+
canonicalUrl: https://openagreements.org/legal/non-compete/us-virgin-islands
|
|
8
|
+
license: CC BY 4.0
|
|
9
|
+
stale: false
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
> [!IMPORTANT]
|
|
13
|
+
> **Informational only — not legal advice.** This is a snapshot of an OpenAgreements practice note,
|
|
14
|
+
> provided for general information. It is not legal advice, does not create an attorney-client
|
|
15
|
+
> relationship, and is not a substitute for a licensed attorney in the relevant jurisdiction.
|
|
16
|
+
> Laws change; verify against the canonical version before relying on it.
|
|
17
|
+
>
|
|
18
|
+
> **Canonical:** https://openagreements.org/legal/non-compete/us-virgin-islands · **Snapshot as of:** 2026-06-08 · License: CC BY 4.0 · © UseJunior
|
|
19
|
+
|
|
20
|
+
# Non-Competes in the U.S. Virgin Islands[^about]
|
|
21
|
+
|
|
22
|
+
The U.S. Virgin Islands may enforce a reasonable non-compete but has no statute on point; the Superior Court in Arvidson v. Buchar judges covenants under an indigenous common-law reasonableness test selected through the Banks methodology, and a small-island economy plus a no-at-will Wrongful Discharge Act make aggressive restraints hard to enforce.
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## At a glance
|
|
26
|
+
|
|
27
|
+
| Question | U.S. Virgin Islands |
|
|
28
|
+
| --- | --- |
|
|
29
|
+
| **Are non-competes enforceable?** | Allowed if reasonable |
|
|
30
|
+
| **Bottom line** | The U.S. Virgin Islands enforces a non-compete only if it is reasonable in duration, area, and scope under a single trial-court decision, and aggressive restraints are hard to enforce in a small-island, non-at-will economy. |
|
|
31
|
+
| **Main law or case** | Arvidson v. Buchar, 2019 VI SUPER 122 (Super. Ct. V.I. 2019) (common law via 1 V.I.C. § 4) |
|
|
32
|
+
| **Can a court narrow it?** | Yes — rewrites to reasonable |
|
|
33
|
+
| **Applies to contractors?** | Unclear |
|
|
34
|
+
| **Restriction extended during a breach?** | Silent — no statute or case addresses tolling |
|
|
35
|
+
| **Maximum length set by law** | No statutory limit |
|
|
36
|
+
|
|
37
|
+
## Are employee non-compete agreements enforceable in the U.S. Virgin Islands? {#employee-noncompetes}
|
|
38
|
+
|
|
39
|
+
**Short answer.** Sometimes. The Virgin Islands is a *reasonableness* jurisdiction, not a per se ban like California or North Dakota. A covenant can be enforced if it is ancillary to a valid relationship, supported by consideration, and no broader than necessary to protect a legitimate business interest. But there is no non-compete statute, the leading authority is a single trial-court decision with no V.I. Supreme Court ruling behind it, and that decision struck the covenant in front of it down — so enforcement is real but fact-dependent and far from automatic [^arvidson-enforceable].
|
|
40
|
+
|
|
41
|
+
The Virgin Islands is an unincorporated U.S. territory. An employment-covenant dispute is decided in the first instance by the Superior Court of the Virgin Islands applying territorial law, with appeals to the Supreme Court of the Virgin Islands (established 2007) and a parallel federal track in the District Court of the Virgin Islands under the Third Circuit. There is no code section that governs employee non-competes; enforceability is a matter of territorial common law, which the courts build through the methodology described below.
|
|
42
|
+
|
|
43
|
+
Because the law lives in case decisions rather than a statute, most of the operating rules here are anchored to one opinion — *Arvidson v. Buchar* — and to the reception statute that tells Virgin Islands courts where to find their common law [^vic-1-4]. A covenant that would survive comfortably in a blue-pencil state still carries genuine first-impression risk in the territory.
|
|
44
|
+
|
|
45
|
+
## What test does the Superior Court apply to a Virgin Islands non-compete? {#governing-test}
|
|
46
|
+
|
|
47
|
+
**Short answer.** The Superior Court applies a common-law rule of reasonableness. Under *Arvidson*, a partial restraint of trade is valid only when it is ancillary to a valid contract or transaction, supported by valid consideration, protects a legitimate business interest, and is reasonable in its duration, geographic area, and the scope of activity it restricts [^arvidson-rule]. Reasonableness is then measured against five factors the court drew from earlier Virgin Islands case law [^arvidson-factors].
|
|
48
|
+
|
|
49
|
+
The court frames the inquiry as a balance among the employer's legitimate business interest, the hardship the restraint imposes on the employee, and the public interest — assessed through the covenant's *time, place, and manner*. The five factors restate that balance as concrete questions:
|
|
50
|
+
|
|
51
|
+
"This test of reasonableness must be applied to the following five factors 1 Is the duration of the restriction reasonable? 2 Is the area of restriction reasonable? 3 Is the interest of the employer reasonably protected? 4 Is undue hardship imposed on the employee? 5 Is the public interest reasonably protected?"[^arvidson-factors]
|
|
52
|
+
|
|
53
|
+
The ultimate determination of reasonableness is a question of law, but it is a fact-intensive one: the court weighs the totality of the circumstances rather than applying a fixed formula [^arvidson-factintensive]. For in-house counsel that means a covenant is judged on its specific facts, and a clause that omits any durational, territorial, or activity limit will not survive.
|
|
54
|
+
|
|
55
|
+
## If there is no statute, where does the non-compete rule come from? {#common-law-source}
|
|
56
|
+
|
|
57
|
+
**Short answer.** From the territory's common law, which the courts now build deliberately rather than by copying the Restatements. Historically, 1 V.I.C. § 4 directed Virgin Islands courts to apply the Restatements as their rules of decision [^banks-section4]. In *Banks v. International Rental & Leasing Corp.*, the Supreme Court of the Virgin Islands held that the Legislature did not intend that statute to force mechanical application of the latest Restatement [^banks-method], and in *Connor* it set out the three-factor analysis Virgin Islands courts use to choose a rule [^connor-factors].
|
|
58
|
+
|
|
59
|
+
This matters for non-competes because *Arvidson* did not simply lift Restatement (Second) of Contracts § 188 off the shelf. It ran the *Banks* analysis and chose an indigenous reasonableness rule, which is why the Virgin Islands standard is a common-law balance rather than a verbatim Restatement test.
|
|
60
|
+
|
|
61
|
+
"We conclude that the Legislature did not intend for section 4 of title 1 to compel this Court to mechanically apply the most recent Restatement."[^banks-method]
|
|
62
|
+
|
|
63
|
+
Under *Connor*, when the law is unsettled the court does not default to the majority rule automatically; it asks which approach is soundest for the territory:
|
|
64
|
+
|
|
65
|
+
"Rather, this Court has instructed that, instead of mechanistically following the Restatements, courts should consider ‘three non-dispositive factors’ to determine Virgin Islands common law: ‘(1) whether any Virgin Islands courts have previously adopted a particular rule; (2) the position taken by a majority of courts from other jurisdictions; and (3) most importantly, which approach represents the soundest rule for the Virgin Islands.’"[^connor-factors]
|
|
66
|
+
|
|
67
|
+
The practical takeaway: a covenant should be defended on Virgin Islands terms. Citing only mainland precedent or the Restatement as if it controlled invites a *Banks* challenge that the rule was never properly adopted here.
|
|
68
|
+
|
|
69
|
+
## How do courts judge a covenant's duration, geographic area, and scope? {#duration-geography-scope}
|
|
70
|
+
|
|
71
|
+
**Short answer.** By asking whether each dimension is no broader than necessary to protect a legitimate interest. *Arvidson* struck its covenant precisely because it gave no durational, territorial, or activity limit and never identified the interest it was meant to protect [^arvidson-scope]. The older decision in *V.I. Diving Schools v. Dixon* voided a covenant on the same ground — that it was an unreasonable restraint greater than necessary to protect the employer's business interest [^dixon-void].
|
|
72
|
+
|
|
73
|
+
Geography deserves special attention. The territory is three small islands — St. Thomas, St. Croix, and St. John — so a territory-wide or *worldwide* restraint is hard to justify as the narrowest protection of a genuine interest. The same logic that makes a 50-mile radius unremarkable on the mainland can make an all-islands restraint look like a naked barrier to earning a living.
|
|
74
|
+
|
|
75
|
+
"restrictive clauses of the agreement are void and unenforceable as against public policy on the ground that they are unreasonable restraint on competition."[^dixon-void]
|
|
76
|
+
|
|
77
|
+
A covenant should therefore state an explicit duration, a defined geographic area tied to where the employer actually competes, and a scope limited to the activities that threaten the protected interest. *Dixon* is a 1983 Territorial Court decision predating *Banks*, so treat it as persuasive illustration rather than binding doctrine — but its reasoning tracks the modern *Arvidson* test.
|
|
78
|
+
|
|
79
|
+
## What consideration supports a Virgin Islands non-compete, and is continued employment enough? {#consideration}
|
|
80
|
+
|
|
81
|
+
**Short answer.** *Arvidson* makes valid consideration an element of an enforceable covenant, but no Virgin Islands decision squarely holds whether continued employment alone is sufficient for a covenant signed mid-employment [^arvidson-consideration]. The wrinkle is that the territory is not an at-will jurisdiction: the Wrongful Discharge Act lets an employer dismiss an employee for only nine enumerated reasons [^arvidson-wda], so the mainland argument that an employer gives value by merely refraining from firing is weaker here.
|
|
82
|
+
|
|
83
|
+
> [!NOTE]
|
|
84
|
+
> **Practice note.**
|
|
85
|
+
>
|
|
86
|
+
> Because the Wrongful Discharge Act limits when an employer may fire, a court could view a bare promise of continued employment as adding little new value. The conservative practice is to support a mid-employment covenant with fresh, independent consideration — a bonus, a raise, a promotion, or specialized training — rather than rely on continued employment alone [^q5-arvidson-wda].
|
|
87
|
+
|
|
88
|
+
No on-point Virgin Islands case resolves the question, so this is a planning judgment rather than a settled rule. Obtaining the covenant at hire — when the offer of employment is itself the consideration — avoids the mid-employment problem, though even a covenant signed at hire must still satisfy *Arvidson*'s ancillary, protectable-interest, and reasonable-scope requirements.
|
|
89
|
+
|
|
90
|
+
## Will a court narrow an overbroad covenant, or void it entirely? {#overbroad-narrowing}
|
|
91
|
+
|
|
92
|
+
**Short answer.** *Arvidson* chose *equitable reformation* as the soundest rule for Virgin Islands non-competes, rejecting both the rigid blue-pencil rule and the all-or-nothing approach [^q6-arvidson]. But the court adopted reformation with an express *greater willingness to refuse to reform* agreements that are not reasonable on their face [^q6-arvidson-strict], and it declined to rewrite the covenant in front of it because that clause had no time, place, or scope limit to salvage. An employer therefore cannot assume a court will rescue an overbroad clause.
|
|
93
|
+
|
|
94
|
+
> [!CAUTION]
|
|
95
|
+
> **Drafting note.**
|
|
96
|
+
>
|
|
97
|
+
> Draft to the narrowest defensible scope from the start. Reformation is theoretically available in the Virgin Islands, but *Arvidson* applies it strictly — a court is reluctant to rewrite an agreement that is not reasonable on its face or that would require supplying essential terms [^q6-arvidson-strict]. A clause with no reasonable core to enforce risks losing entirely, as both *Arvidson* and the older *Dixon* decision show [^q6-dixon].
|
|
98
|
+
|
|
99
|
+
A savings or step-down clause may improve the odds of partial enforcement, but only if enough reasonable terms already exist for a court to enforce without effectively writing a new covenant. The safer assumption is that the covenant as drafted is the covenant the court will judge.
|
|
100
|
+
|
|
101
|
+
## Does the restricted period toll or extend if the employee breaches? {#tolling}
|
|
102
|
+
|
|
103
|
+
**Short answer.** No Virgin Islands statute or decision addresses tolling — whether the clock pauses, or the restricted period is extended, while a former employee is violating the covenant or litigation is pending. This is an open question in the territory [^q7-arvidson].
|
|
104
|
+
|
|
105
|
+
> [!NOTE]
|
|
106
|
+
> **Practice note.**
|
|
107
|
+
>
|
|
108
|
+
> Treat any tolling or extension-on-breach clause as untested in the Virgin Islands. Because the controlling test asks whether the *total* restraint is reasonable in duration [^q7-arvidson], an extension that lengthens the covenant well beyond its stated term could itself be challenged as unreasonable. If you include a tolling clause, cap the maximum extension and keep the underlying period conservative so the worst-case total still looks reasonable.
|
|
109
|
+
|
|
110
|
+
Because there is no on-point authority, a Virgin Islands court asked to enforce a tolling provision would likely reason from the same reasonableness principles that govern duration generally, and from persuasive mainland authority — but the outcome cannot be predicted with confidence.
|
|
111
|
+
|
|
112
|
+
## If a non-compete is shaky, what protects trade secrets and confidential information? {#trade-secrets}
|
|
113
|
+
|
|
114
|
+
**Short answer.** The Virgin Islands has adopted the Uniform Trade Secrets Act, which gives an employer a statutory remedy for misappropriation independent of any covenant [^vic-11-1001]. It defines a trade secret broadly [^vic-11-1002], preserves contractual remedies alongside the Act [^vic-11-1008], and the evidence code adds a privilege to resist disclosing trade secrets in litigation [^vic-5-858].
|
|
115
|
+
|
|
116
|
+
This matters because trade-secret and confidentiality protection does not depend on the reasonableness test that makes non-competes hard to enforce. The Act both displaces conflicting common-law misappropriation remedies and preserves contractual ones, so a confidentiality agreement and the statutory claim work together [^vic-11-1008]. A narrowly drafted confidentiality and trade-secret program is often the more durable protection in the territory, and *Dixon* shows the risk of relying on a covenant without a documented protectable interest — the employer there failed to prove any trade secret worth protecting [^dixon-notrade].
|
|
117
|
+
|
|
118
|
+
## Can an overbroad covenant run afoul of the Virgin Islands Antimonopoly Law? {#antimonopoly}
|
|
119
|
+
|
|
120
|
+
**Short answer.** It may supply an additional, untested ground of attack. The Virgin Islands Antimonopoly Law makes it a violation to unreasonably restrain trade or commerce by *contract, combination, or conspiracy* [^vic-11-1503]. An employee challenging a sweeping covenant — especially in a small market where the restraint could foreclose competition — might invoke that statute alongside the common-law reasonableness defense.
|
|
121
|
+
|
|
122
|
+
This is a secondary tool rather than the main event, and an untested one: the statute's concerted-action language (*combination or conspiracy with one or more other persons*) fits horizontal market conduct more naturally than a two-party employment covenant, and no Virgin Islands case has applied § 1503 to an employee non-compete. The day-to-day enforceability question is decided under the *Arvidson* reasonableness test. But the statute reinforces why a covenant that goes beyond protecting a legitimate interest is vulnerable, because the same overreach that fails the reasonableness test can also look like an unreasonable restraint of trade.
|
|
123
|
+
|
|
124
|
+
## How are non-solicits, NDAs, and sale-of-business or LLC covenants treated? {#other-covenants}
|
|
125
|
+
|
|
126
|
+
**Short answer.** An employee non-solicit that restrains competitive activity should be drafted to satisfy *Arvidson*'s reasonableness principles, because a restraint dressed up as a non-solicit is still a partial restraint of trade [^q10-arvidson]. Confidentiality and trade-secret clauses are supported separately by contract law and the Uniform Trade Secrets Act rather than by the non-compete test — though an overbroad confidentiality clause that operates as a de facto non-compete may draw similar scrutiny. Entity-governance covenants have a clear statutory foothold: the LLC statute expressly contemplates a court-ordered *covenant not to compete* as a term of a member buyout [^vic-13-1702].
|
|
127
|
+
|
|
128
|
+
Broader sale-of-business covenants should still be analyzed under the same reasonableness principles. Mainland practice often treats a seller or departing owner who is paid for goodwill more favorably than an ordinary employee, because the legitimate interest is stronger and the hardship is offset by the purchase price — but in the Virgin Islands that more-favorable treatment is an inference from common-law context, not a territorial appellate holding. A sale-of-business covenant is still measured for reasonable duration, area, and scope, and a *worldwide* restraint on a Virgin Islands business will draw the same skepticism a worldwide employee covenant would.
|
|
129
|
+
|
|
130
|
+
## Does the federal FTC non-compete ban apply, and which court decides a dispute? {#ftc-and-courts}
|
|
131
|
+
|
|
132
|
+
**Short answer.** No. The Federal Trade Commission's 2024 Non-Compete Rule never took effect — a federal court set it aside, the FTC acceded to that result, and the Commission has now removed the rule from the Code of Federal Regulations [^ftc-removal]. Virgin Islands non-compete disputes are governed by territorial common law and decided in the first instance by the Superior Court, with appeals to the Supreme Court of the Virgin Islands and a separate federal track in the District Court of the Virgin Islands.
|
|
133
|
+
|
|
134
|
+
> [!NOTE]
|
|
135
|
+
> **Practice note.**
|
|
136
|
+
>
|
|
137
|
+
> Do not rely on guidance — including parts of the 2024–2025 commentary — that treats the FTC ban as live. As of February 2026 the rule has been removed from the CFR and is not operative [^ftc-removal]; enforceability turns entirely on Virgin Islands law. Separately, the FTC may still challenge individual covenants case-by-case under its general authority, but there is no across-the-board federal ban.
|
|
138
|
+
|
|
139
|
+
For planning, the audience that matters is a Virgin Islands judge applying the *Arvidson* reasonableness test — not a federal rule. Where a dispute lands in the District Court on diversity or federal-question grounds, that court still applies Virgin Islands substantive law, informed by Third Circuit procedure.
|
|
140
|
+
|
|
141
|
+
[^about]: By Steven Obiajulu, J.D. Published by [openagreements.org](https://openagreements.org) · Maintained by [UseJunior](https://usejunior.com). Last reviewed 2026-06-03. License: CC BY 4.0. Steven Obiajulu, J.D. is admitted in New York, not U.S. Virgin Islands. This article synthesizes U.S. Virgin Islands primary law and is not legal advice from a U.S. Virgin Islands-admitted attorney. This article is for informational purposes only and does not create an attorney-client relationship.
|
|
142
|
+
|
|
143
|
+
[^arvidson-enforceable]: **Arvidson v. Buchar** — "Accordingly, the Arvidsons have met their summary judgment burden, and the Court finds the covenant to not compete invalid and unenforceable as a matter of law" *Arvidson v. Buchar, 2019 VI SUPER 122 (Super. Ct. V.I. Sept. 10, 2019).* <https://usvipublicportal-api.vicourts.org/courts/87edff36-c02b-4073-aea4-c0652bc123d9/cms/case/7432A3F8-AD71-45C5-B028-B4471D746A4E/docketentrydocuments/27b98266-7d9f-405f-b7ba-c221f8db0a97>
|
|
144
|
+
|
|
145
|
+
[^vic-1-4]: **1 V.I.C. § 4 — Application of common law; restatements** — "shall be the rules of decision in the courts of the Virgin Islands in cases to which they apply, in the absence of local laws to the contrary." *1 V.I.C. § 4.* <https://advance.lexis.com/container?config=014DJAA3OWU1MmYyMC1kNzRhLTQ4NDAtYTMxZS01YzJhMzBkZDA0NDMKAFBvZENhdGFsb2dSOvVciRp0EcGxvMymeAXd>
|
|
146
|
+
|
|
147
|
+
[^arvidson-rule]: **Arvidson v. Buchar** — "In accordance, this Court similarly adopts the same rule of reasonableness" *Arvidson v. Buchar, 2019 VI SUPER 122 (Super. Ct. V.I. Sept. 10, 2019).* <https://usvipublicportal-api.vicourts.org/courts/87edff36-c02b-4073-aea4-c0652bc123d9/cms/case/7432A3F8-AD71-45C5-B028-B4471D746A4E/docketentrydocuments/27b98266-7d9f-405f-b7ba-c221f8db0a97>
|
|
148
|
+
|
|
149
|
+
[^arvidson-factors]: **Arvidson v. Buchar** — "This test of reasonableness must be applied to the following five factors 1 Is the duration of the restriction reasonable? 2 Is the area of restriction reasonable? 3 Is the interest of the employer reasonably protected? 4 Is undue hardship imposed on the employee? 5 Is the public interest reasonably protected?" *Arvidson v. Buchar, 2019 VI SUPER 122 (Super. Ct. V.I. Sept. 10, 2019).* <https://usvipublicportal-api.vicourts.org/courts/87edff36-c02b-4073-aea4-c0652bc123d9/cms/case/7432A3F8-AD71-45C5-B028-B4471D746A4E/docketentrydocuments/27b98266-7d9f-405f-b7ba-c221f8db0a97>
|
|
150
|
+
|
|
151
|
+
[^arvidson-factintensive]: **Arvidson v. Buchar** — "reasonableness is a fact intensive inquiry that depends on weighing the totality of the circumstances" *Arvidson v. Buchar, 2019 VI SUPER 122 (Super. Ct. V.I. Sept. 10, 2019).* <https://usvipublicportal-api.vicourts.org/courts/87edff36-c02b-4073-aea4-c0652bc123d9/cms/case/7432A3F8-AD71-45C5-B028-B4471D746A4E/docketentrydocuments/27b98266-7d9f-405f-b7ba-c221f8db0a97>
|
|
152
|
+
|
|
153
|
+
[^banks-section4]: **Banks v. International Rental & Leasing Corp.** — "The rules of the common law, as expressed in the restatements of the law approved by the American Law Institute, and to the extent not so expressed, as generally understood and applied in the United States, shall be the rules of decision in the courts of the Virgin Islands in cases to which they apply, in the absence of local laws to the contrary." *Banks v. Int'l Rental & Leasing Corp., 55 V.I. 967 (V.I. 2011).* <https://www.courtlistener.com/opinion/8676262/banks-v-international-rental-leasing-corp/#:~:text=The%20rules%20of%20the%20common,local%20laws%20to%20the%20contrary.>
|
|
154
|
+
|
|
155
|
+
[^banks-method]: **Banks v. International Rental & Leasing Corp.** — "We conclude that the Legislature did not intend for section 4 of title 1 to compel this Court to mechanically apply the most recent Restatement." *Banks v. Int'l Rental & Leasing Corp., 55 V.I. 967 (V.I. 2011).* <https://www.courtlistener.com/opinion/8676262/banks-v-international-rental-leasing-corp/#:~:text=We%20conclude%20that%20the%20Legislature,apply%20the%20most%20recent%20Restatement.>
|
|
156
|
+
|
|
157
|
+
[^connor-factors]: **Government of the Virgin Islands v. Connor** — "Rather, this Court has instructed that, instead of mechanistically following the Restatements, courts should consider ‘three non-dispositive factors’ to determine Virgin Islands common law: ‘(1) whether any Virgin Islands courts have previously adopted a particular rule; (2) the position taken by a majority of courts from other jurisdictions; and (3) most importantly, which approach represents the soundest rule for the Virgin Islands.’" *Gov't of the V.I. v. Connor, 60 V.I. 597 (V.I. 2014).* <https://cdnsm5-hosted.civiclive.com/UserFiles/Servers/Server_12810860/File/Opinions/Published/2014/File16.pdf>
|
|
158
|
+
|
|
159
|
+
[^arvidson-scope]: **Arvidson v. Buchar** — "The Covenant to not compete does not pass the three pronged business interest test and, by failing to provide time, place, and manner restrictions, is overly broad and invalid" *Arvidson v. Buchar, 2019 VI SUPER 122 (Super. Ct. V.I. Sept. 10, 2019).* <https://usvipublicportal-api.vicourts.org/courts/87edff36-c02b-4073-aea4-c0652bc123d9/cms/case/7432A3F8-AD71-45C5-B028-B4471D746A4E/docketentrydocuments/27b98266-7d9f-405f-b7ba-c221f8db0a97>
|
|
160
|
+
|
|
161
|
+
[^dixon-void]: **V.I. Diving Schools/Supplies, Inc. v. Dixon** — "restrictive clauses of the agreement are void and unenforceable as against public policy on the ground that they are unreasonable restraint on competition." *V.I. Diving Schools/Supplies, Inc. v. Dixon, Civ. No. 1046/1982 (Terr. Ct. V.I. Oct. 7, 1983).* <https://cdnsm5-hosted.civiclive.com/UserFiles/Servers/Server_12810747/File/Opinions/Archive/VI%20Diving%20Sch%20v.%20Dixon%20%28IAM%29.pdf>
|
|
162
|
+
|
|
163
|
+
[^arvidson-consideration]: **Arvidson v. Buchar** — "is supported by valid consideration" *Arvidson v. Buchar, 2019 VI SUPER 122 (Super. Ct. V.I. Sept. 10, 2019).* <https://usvipublicportal-api.vicourts.org/courts/87edff36-c02b-4073-aea4-c0652bc123d9/cms/case/7432A3F8-AD71-45C5-B028-B4471D746A4E/docketentrydocuments/27b98266-7d9f-405f-b7ba-c221f8db0a97>
|
|
164
|
+
|
|
165
|
+
[^arvidson-wda]: **Arvidson v. Buchar** — "24 V I C § 76 (the Virgin Islands Wrongful Discharge Act enumerating only nine reasons for which an employer may lawfully discharge an employee after qualifying for protection under the statute)" *Arvidson v. Buchar, 2019 VI SUPER 122 (Super. Ct. V.I. Sept. 10, 2019) (citing 24 V.I.C. § 76).* <https://usvipublicportal-api.vicourts.org/courts/87edff36-c02b-4073-aea4-c0652bc123d9/cms/case/7432A3F8-AD71-45C5-B028-B4471D746A4E/docketentrydocuments/27b98266-7d9f-405f-b7ba-c221f8db0a97>
|
|
166
|
+
|
|
167
|
+
[^q5-arvidson-wda]: **Arvidson v. Buchar** — "24 V I C § 76 (the Virgin Islands Wrongful Discharge Act enumerating only nine reasons for which an employer may lawfully discharge an employee after qualifying for protection under the statute)" *Arvidson v. Buchar, 2019 VI SUPER 122 (Super. Ct. V.I. Sept. 10, 2019) (citing 24 V.I.C. § 76).* <https://usvipublicportal-api.vicourts.org/courts/87edff36-c02b-4073-aea4-c0652bc123d9/cms/case/7432A3F8-AD71-45C5-B028-B4471D746A4E/docketentrydocuments/27b98266-7d9f-405f-b7ba-c221f8db0a97>
|
|
168
|
+
|
|
169
|
+
[^q6-arvidson]: **Arvidson v. Buchar** — "the soundest rule for the Virgin Islands is the equitable reformation approach" *Arvidson v. Buchar, 2019 VI SUPER 122 (Super. Ct. V.I. Sept. 10, 2019).* <https://usvipublicportal-api.vicourts.org/courts/87edff36-c02b-4073-aea4-c0652bc123d9/cms/case/7432A3F8-AD71-45C5-B028-B4471D746A4E/docketentrydocuments/27b98266-7d9f-405f-b7ba-c221f8db0a97>
|
|
170
|
+
|
|
171
|
+
[^q6-arvidson-strict]: **Arvidson v. Buchar** — "Accordingly, the Court implements this rule with a greater willingness to refuse to reform agreements that are not reasonable on their face" *Arvidson v. Buchar, 2019 VI SUPER 122 (Super. Ct. V.I. Sept. 10, 2019).* <https://usvipublicportal-api.vicourts.org/courts/87edff36-c02b-4073-aea4-c0652bc123d9/cms/case/7432A3F8-AD71-45C5-B028-B4471D746A4E/docketentrydocuments/27b98266-7d9f-405f-b7ba-c221f8db0a97>
|
|
172
|
+
|
|
173
|
+
[^q6-dixon]: **V.I. Diving Schools/Supplies, Inc. v. Dixon** — "restrictive clauses of the agreement are void and unenforceable as against public policy on the ground that they are unreasonable restraint on competition." *V.I. Diving Schools/Supplies, Inc. v. Dixon, Civ. No. 1046/1982 (Terr. Ct. V.I. Oct. 7, 1983).* <https://cdnsm5-hosted.civiclive.com/UserFiles/Servers/Server_12810747/File/Opinions/Archive/VI%20Diving%20Sch%20v.%20Dixon%20%28IAM%29.pdf>
|
|
174
|
+
|
|
175
|
+
[^q7-arvidson]: **Arvidson v. Buchar** — "reasonableness is a fact intensive inquiry that depends on weighing the totality of the circumstances" *Arvidson v. Buchar, 2019 VI SUPER 122 (Super. Ct. V.I. Sept. 10, 2019).* <https://usvipublicportal-api.vicourts.org/courts/87edff36-c02b-4073-aea4-c0652bc123d9/cms/case/7432A3F8-AD71-45C5-B028-B4471D746A4E/docketentrydocuments/27b98266-7d9f-405f-b7ba-c221f8db0a97>
|
|
176
|
+
|
|
177
|
+
[^vic-11-1001]: **11 V.I.C. § 1001 — Uniform Trade Secrets Act (short title)** — "This chapter may be cited as the Uniform Trade Secrets Act." *11 V.I.C. § 1001.* <https://advance.lexis.com/document/?pdmfid=1000516&pddocfullpath=/shared/document/statutes-legislation/urn:contentItem:56WP-9KS1-6G1M-90D3-00008-00>
|
|
178
|
+
|
|
179
|
+
[^vic-11-1002]: **11 V.I.C. § 1002 — Definitions** — "‘Trade secret’ means information, including a formula, pattern, compilation, program, device, method, technique, or process" *11 V.I.C. § 1002.* <https://advance.lexis.com/document/?pdmfid=1000516&pddocfullpath=/shared/document/statutes-legislation/urn:contentItem:56WP-9KS1-6G1M-90D5-00008-00>
|
|
180
|
+
|
|
181
|
+
[^vic-11-1008]: **11 V.I.C. § 1008 — Effect of other law** — "This chapter does not affect: (1) contractual remedies, whether or not based upon misappropriation of a trade secret" *11 V.I.C. § 1008.* <https://advance.lexis.com/document/?pdmfid=1000516&pddocfullpath=/shared/document/statutes-legislation/urn:contentItem:56WP-9KS1-6G1M-90DK-00008-00>
|
|
182
|
+
|
|
183
|
+
[^vic-5-858]: **5 V.I.C. § 858 — Trade secrets privilege** — "A person has a privilege which may be claimed by him or his agent or employee, to refuse to disclose and to prevent other persons from disclosing a trade secret, owned by him, if the allowance of the privilege will not tend to conceal fraud or otherwise work injustice." *5 V.I.C. § 858.* <https://advance.lexis.com/document/?pdmfid=1000516&pddocfullpath=/shared/document/statutes-legislation/urn:contentItem:56WP-9JF1-6G1M-90PJ-00008-00>
|
|
184
|
+
|
|
185
|
+
[^dixon-notrade]: **V.I. Diving Schools/Supplies, Inc. v. Dixon** — "Plaintiff Virgin Islands Diving Schools presented no evidence of any trade secrets which the Defendants obtained that is worthy of protection." *V.I. Diving Schools/Supplies, Inc. v. Dixon, Civ. No. 1046/1982 (Terr. Ct. V.I. Oct. 7, 1983).* <https://cdnsm5-hosted.civiclive.com/UserFiles/Servers/Server_12810747/File/Opinions/Archive/VI%20Diving%20Sch%20v.%20Dixon%20%28IAM%29.pdf>
|
|
186
|
+
|
|
187
|
+
[^vic-11-1503]: **11 V.I.C. § 1503 — Violations enumerated** — "By contract, combination, or conspiracy with one or more other persons unreasonably restrain trade or commerce" *11 V.I.C. § 1503.* <https://advance.lexis.com/document/?pdmfid=1000516&pddocfullpath=/shared/document/statutes-legislation/urn:contentItem:56WP-9KS1-6G1M-90M3-00008-00>
|
|
188
|
+
|
|
189
|
+
[^q10-arvidson]: **Arvidson v. Buchar** — "a contract which is only in partial restraint of trade may be valid and enforceable when it" *Arvidson v. Buchar, 2019 VI SUPER 122 (Super. Ct. V.I. Sept. 10, 2019).* <https://usvipublicportal-api.vicourts.org/courts/87edff36-c02b-4073-aea4-c0652bc123d9/cms/case/7432A3F8-AD71-45C5-B028-B4471D746A4E/docketentrydocuments/27b98266-7d9f-405f-b7ba-c221f8db0a97>
|
|
190
|
+
|
|
191
|
+
[^vic-13-1702]: **13 V.I.C. § 1702 — Court action to determine fair value of distributional interest** — "a covenant not to compete or other restriction on a dissociated member" *13 V.I.C. § 1702.* <https://advance.lexis.com/document/?pdmfid=1000516&pddocfullpath=/shared/document/statutes-legislation/urn:contentItem:56WP-9M71-6G1M-90VX-00008-00>
|
|
192
|
+
|
|
193
|
+
[^ftc-removal]: **Removal of the Non-Compete Rule from the CFR** — "this final rule removes the Non-Compete Rule codified at 16 CFR part 910 from the Code of Federal Regulations" *Removal of the Non-Compete Rule, 91 Fed. Reg. 6507 (Feb. 12, 2026).* <https://www.federalregister.gov/documents/2026/02/12/2026-02866/revision-of-the-negative-option-rule-withdrawal-of-the-cars-rule-removal-of-the-non-compete-rule-to>
|