Skip to content

Commit f22db43

Browse files
authored
Merge branch 'main' into remove-not-dependency
2 parents 25b86ae + b906f0c commit f22db43

File tree

9 files changed

+232
-227
lines changed

9 files changed

+232
-227
lines changed

.github/workflows/bb.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: bb
22
on:
33
issues:
4-
types: [opened, reopened, edited, closed, labeled, unlabeled]
4+
types: [closed, edited, labeled, opened, reopened, unlabeled]
55
pull_request_target:
6-
types: [opened, reopened, edited, closed, labeled, unlabeled]
6+
types: [closed, edited, labeled, opened, reopened, unlabeled]
77
jobs:
88
main:
99
runs-on: ubuntu-latest

.github/workflows/main.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
name: main
2-
on:
3-
- pull_request
4-
- push
51
jobs:
62
main:
73
name: ${{matrix.node}}
84
runs-on: ubuntu-latest
95
steps:
10-
- uses: actions/checkout@v3
11-
- uses: actions/setup-node@v3
6+
- uses: actions/checkout@v4
7+
- uses: actions/setup-node@v4
128
with:
139
node-version: ${{matrix.node}}
1410
- run: npm install
1511
- run: npm test
16-
- uses: codecov/codecov-action@v3
12+
- uses: codecov/codecov-action@v4
1713
strategy:
1814
matrix:
1915
node:
20-
- lts/gallium
16+
- lts/hydrogen
2117
- node
18+
name: main
19+
on:
20+
- pull_request
21+
- push

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.DS_Store
22
*.d.ts
33
*.log
4+
*.tsbuildinfo
45
coverage/
56
node_modules/
67
yarn.lock

lib/enter-state.js

+19-19
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ export function enterState(state, node) {
3434
const currentDirection = state.direction
3535
const editableOrEditingHost = state.editableOrEditingHost
3636
/** @type {Direction | undefined} */
37-
let dirInferred
37+
let directionInferred
3838

3939
if (node.type === 'element') {
4040
const lang = node.properties.xmlLang || node.properties.lang
4141
const type = node.properties.type || 'text'
42-
const dir = dirProperty(node)
42+
const direction = directionProperty(node)
4343

4444
if (lang !== null && lang !== undefined) {
4545
state.language = String(lang)
@@ -56,22 +56,22 @@ export function enterState(state, node) {
5656

5757
// See: <https://html.spec.whatwg.org/#the-directionality>.
5858
// Explicit `[dir=rtl]`.
59-
if (dir === 'rtl') {
60-
dirInferred = dir
59+
if (direction === 'rtl') {
60+
directionInferred = direction
6161
} else if (
6262
// Explicit `[dir=ltr]`.
63-
dir === 'ltr' ||
63+
direction === 'ltr' ||
6464
// HTML with an invalid or no `[dir]`.
65-
(dir !== 'auto' && node.tagName === 'html') ||
65+
(direction !== 'auto' && node.tagName === 'html') ||
6666
// `input[type=tel]` with an invalid or no `[dir]`.
67-
(dir !== 'auto' && node.tagName === 'input' && type === 'tel')
67+
(direction !== 'auto' && node.tagName === 'input' && type === 'tel')
6868
) {
69-
dirInferred = 'ltr'
69+
directionInferred = 'ltr'
7070
// `[dir=auto]` or `bdi` with an invalid or no `[dir]`.
71-
} else if (dir === 'auto' || node.tagName === 'bdi') {
71+
} else if (direction === 'auto' || node.tagName === 'bdi') {
7272
if (node.tagName === 'textarea') {
7373
// Check contents of `<textarea>`.
74-
dirInferred = dirBidi(toString(node))
74+
directionInferred = directionBidi(toString(node))
7575
} else if (
7676
node.tagName === 'input' &&
7777
(type === 'email' ||
@@ -80,17 +80,17 @@ export function enterState(state, node) {
8080
type === 'text')
8181
) {
8282
// Check value of `<input>`.
83-
dirInferred = node.properties.value
84-
? dirBidi(String(node.properties.value))
83+
directionInferred = node.properties.value
84+
? directionBidi(String(node.properties.value))
8585
: 'ltr'
8686
} else {
8787
// Check text nodes in `node`.
8888
visit(node, inferDirectionality)
8989
}
9090
}
9191

92-
if (dirInferred) {
93-
state.direction = dirInferred
92+
if (directionInferred) {
93+
state.direction = directionInferred
9494
}
9595
}
9696
// Turn off editing mode in non-HTML spaces.
@@ -115,8 +115,8 @@ export function enterState(state, node) {
115115
/** @type {Visitor} */
116116
function inferDirectionality(child) {
117117
if (child.type === 'text') {
118-
dirInferred = dirBidi(child.value)
119-
return dirInferred ? EXIT : undefined
118+
directionInferred = directionBidi(child.value)
119+
return directionInferred ? EXIT : undefined
120120
}
121121

122122
if (
@@ -126,7 +126,7 @@ export function enterState(state, node) {
126126
child.tagName === 'script' ||
127127
child.tagName === 'style' ||
128128
child.tagName === 'textare' ||
129-
dirProperty(child))
129+
directionProperty(child))
130130
) {
131131
return SKIP
132132
}
@@ -141,7 +141,7 @@ export function enterState(state, node) {
141141
* @returns {Exclude<Direction, 'auto'> | undefined}
142142
* Directionality.
143143
*/
144-
function dirBidi(value) {
144+
function directionBidi(value) {
145145
const result = direction(value)
146146
return result === 'neutral' ? undefined : result
147147
}
@@ -152,7 +152,7 @@ function dirBidi(value) {
152152
* @returns {Direction | undefined}
153153
* Directionality.
154154
*/
155-
function dirProperty(node) {
155+
function directionProperty(node) {
156156
const value =
157157
node.type === 'element' && typeof node.properties.dir === 'string'
158158
? node.properties.dir.toLowerCase()

lib/pseudo.js

+16-13
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ function checked(_, element) {
153153
* @returns {boolean}
154154
* Whether `element` matches `query`.
155155
*/
156+
// eslint-disable-next-line unicorn/prevent-abbreviations
156157
function dir(query, _1, _2, _3, state) {
157158
assert(query.argument, 'expected `argument`')
158159
assert(query.argument.type === 'String', 'expected plain text')
@@ -270,9 +271,9 @@ function firstOfType(query, _1, _2, _3, state) {
270271
function getCachedNthCheck(query) {
271272
/** @type {(value: number) => boolean} */
272273
// @ts-expect-error: cache.
273-
let fn = query._cachedFn
274+
let cachedFunction = query._cachedFn
274275

275-
if (!fn) {
276+
if (!cachedFunction) {
276277
const value = query.argument
277278
assert(value, 'expected `argument`')
278279

@@ -282,12 +283,12 @@ function getCachedNthCheck(query) {
282283
)
283284
}
284285

285-
fn = nthCheck(value.a + 'n+' + value.b)
286+
cachedFunction = nthCheck(value.a + 'n+' + value.b)
286287
// @ts-expect-error: cache.
287-
query._cachedFn = fn
288+
query._cachedFn = cachedFunction
288289
}
289290

290-
return fn
291+
return cachedFunction
291292
}
292293

293294
/**
@@ -484,9 +485,11 @@ function not(query, element, index, parent, state) {
484485
* Whether `element` matches `query`.
485486
*/
486487
function nthChild(query, _1, _2, _3, state) {
487-
const fn = getCachedNthCheck(query)
488+
const cachedFunction = getCachedNthCheck(query)
488489
assertDeep(state, query)
489-
return typeof state.elementIndex === 'number' && fn(state.elementIndex)
490+
return (
491+
typeof state.elementIndex === 'number' && cachedFunction(state.elementIndex)
492+
)
490493
}
491494

492495
/**
@@ -506,12 +509,12 @@ function nthChild(query, _1, _2, _3, state) {
506509
* Whether `element` matches `query`.
507510
*/
508511
function nthLastChild(query, _1, _2, _3, state) {
509-
const fn = getCachedNthCheck(query)
512+
const cachedFunction = getCachedNthCheck(query)
510513
assertDeep(state, query)
511514
return Boolean(
512515
typeof state.elementCount === 'number' &&
513516
typeof state.elementIndex === 'number' &&
514-
fn(state.elementCount - state.elementIndex - 1)
517+
cachedFunction(state.elementCount - state.elementIndex - 1)
515518
)
516519
}
517520

@@ -532,12 +535,12 @@ function nthLastChild(query, _1, _2, _3, state) {
532535
* Whether `element` matches `query`.
533536
*/
534537
function nthLastOfType(query, _1, _2, _3, state) {
535-
const fn = getCachedNthCheck(query)
538+
const cachedFunction = getCachedNthCheck(query)
536539
assertDeep(state, query)
537540
return (
538541
typeof state.typeCount === 'number' &&
539542
typeof state.typeIndex === 'number' &&
540-
fn(state.typeCount - 1 - state.typeIndex)
543+
cachedFunction(state.typeCount - 1 - state.typeIndex)
541544
)
542545
}
543546

@@ -558,9 +561,9 @@ function nthLastOfType(query, _1, _2, _3, state) {
558561
* Whether `element` matches `query`.
559562
*/
560563
function nthOfType(query, _1, _2, _3, state) {
561-
const fn = getCachedNthCheck(query)
564+
const cachedFunction = getCachedNthCheck(query)
562565
assertDeep(state, query)
563-
return typeof state.typeIndex === 'number' && fn(state.typeIndex)
566+
return typeof state.typeIndex === 'number' && cachedFunction(state.typeIndex)
564567
}
565568

566569
/**

lib/walk.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -192,10 +192,10 @@ function applySelectors(state, rules, node, index, parent) {
192192
nest.combinator === '+'
193193
? 'adjacentSibling'
194194
: nest.combinator === '~'
195-
? 'generalSibling'
196-
: nest.combinator === '>'
197-
? 'directChild'
198-
: 'descendant'
195+
? 'generalSibling'
196+
: nest.combinator === '>'
197+
? 'directChild'
198+
: 'descendant'
199199
add(nestResult, label, nest)
200200
} else {
201201
// We have a match!
@@ -237,10 +237,10 @@ function combine(left, right) {
237237
return left && right && left.length > 0 && right.length > 0
238238
? [...left, ...right]
239239
: left && left.length > 0
240-
? left
241-
: right && right.length > 0
242-
? right
243-
: empty
240+
? left
241+
: right && right.length > 0
242+
? right
243+
: empty
244244
}
245245

246246
/**

package.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,16 @@
5454
"zwitch": "^2.0.0"
5555
},
5656
"devDependencies": {
57-
"@types/node": "^20.0.0",
58-
"c8": "^8.0.0",
57+
"@types/node": "^22.0.0",
58+
"c8": "^10.0.0",
5959
"hastscript": "^8.0.0",
6060
"prettier": "^3.0.0",
61-
"remark-cli": "^11.0.0",
62-
"remark-preset-wooorm": "^9.0.0",
61+
"remark-cli": "^12.0.0",
62+
"remark-preset-wooorm": "^10.0.0",
6363
"type-coverage": "^2.0.0",
6464
"typescript": "^5.0.0",
6565
"unist-builder": "^4.0.0",
66-
"xo": "^0.56.0"
66+
"xo": "^0.59.0"
6767
},
6868
"scripts": {
6969
"prepack": "npm run build && npm run format",
@@ -107,6 +107,7 @@
107107
],
108108
"prettier": true,
109109
"rules": {
110+
"logical-assignment-operators": "off",
110111
"max-params": "off",
111112
"unicorn/prefer-at": "off"
112113
}

0 commit comments

Comments
 (0)