Skip to content

Commit

Permalink
delint
Browse files Browse the repository at this point in the history
Signed-off-by: Yuri Shkuro <[email protected]>
  • Loading branch information
yurishkuro committed Jun 4, 2023
1 parent f666442 commit df89c77
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ export function TracePageSearchBarFn(props: TracePageSearchBarProps & { forwarde
</p>
<p>
When matching key-value pairs, the substring search is applied separately against the key, the
value, and the concatenated <code>"key=value"</code> string. The latter allows searching for exact
matches like <code>http.status_code=200</code>.
value, and the concatenated <code>&quot;key=value&quot;</code> string. The latter allows searching
for exact matches like <code>http.status_code=200</code>.
</p>
<p>
To preclude certain key-value pairs from participating in the matching, prefix the key with the
minus <code>'-'</code> sign, e.g., <code>-http.status_code</code>.
minus <code>&apos;-&apos;</code> sign, e.g., <code>-http.status_code</code>.
</p>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion scripts/check-license.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

licRes=$(
for file in $(find scripts typings packages/*/src packages/*/test packages/plexus/demo -type f -iregex '.*\.[cjt]ss*x*$' \! -name 'layout.worker.bundled.js'); do
for file in $(find scripts packages/*/src packages/*/test packages/plexus/demo -type f -iregex '.*\.[cjt]ss*x*$' \! -name 'layout.worker.bundled.js'); do
head -n3 "${file}" | grep -Eq "(Copyright|generated|GENERATED)" || echo " ${file}"
done;)
if [ -n "${licRes}" ]; then
Expand Down

0 comments on commit df89c77

Please sign in to comment.