Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 75978c8

Browse files
committed
run prettier
1 parent cb2361e commit 75978c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/rules/async-currenttarget.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = {
1111
create(context) {
1212
const scopeDidWait = new WeakSet()
1313
const sourceCode = context.sourceCode ?? context.getSourceCode()
14-
14+
1515
return {
1616
AwaitExpression(node) {
1717
scopeDidWait.add(sourceCode.getScope ? sourceCode.getScope(node) : context.getScope())

lib/rules/filenames-match-regex.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module.exports = {
2929
const defaultRegexp = /^[a-z0-9-]+(.[a-z0-9-]+)?$/
3030
const conventionRegexp = context.options[0] ? new RegExp(context.options[0]) : defaultRegexp
3131
const ignoreExporting = context.options[1] ? context.options[1] : false
32-
32+
3333
return {
3434
Program(node) {
3535
const filename = context.filename ?? context.getFilename()

0 commit comments

Comments
 (0)