Skip to content

Commit ac87f28

Browse files
committed
Exclude more files from typos workflow
Avoid false positives on code contained within inline babel snapshots
1 parent 7af49a2 commit ac87f28

File tree

3 files changed

+19
-13
lines changed

3 files changed

+19
-13
lines changed

.github/workflows/typos.toml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Used by the Ignore false-positives
2+
3+
[files]
4+
extend-exclude = [
5+
"*.snap",
6+
"apps/rollup-example/lotsOfStyles.js",
7+
"apps/rollup-example/lotsOfStylesDynamic.js",
8+
"packages/babel-plugin/__tests__/", # False positives on hashed object-key names
9+
"packages/shared/__tests__/", # False positives on hashed object-key names
10+
"flow-typed/*",
11+
]
12+
13+
[default.extend-words]
14+
# Ignore false-positives
15+
stylex = "stylex"

.github/workflows/typos.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Spell Check
1+
name: Spell Check
22
on:
33
pull_request:
44
push:
@@ -12,4 +12,6 @@ jobs:
1212
- name: Checkout Actions Repository
1313
uses: actions/checkout@v4
1414
- name: Check spelling
15-
uses: crate-ci/typos@master
15+
uses: crate-ci/typos@master
16+
with:
17+
config: .github/workflows/typos.toml

typos.toml

-11
This file was deleted.

0 commit comments

Comments
 (0)