Skip to content

Commit dbad7d8

Browse files
fix: order visitor keys for ExportSpecifier in source code order (#656)
1 parent b847f35 commit dbad7d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/eslint-visitor-keys/lib/visitor-keys.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ const KEYS = {
100100
"attributes"
101101
],
102102
ExportSpecifier: [
103-
"exported",
104-
"local"
103+
"local",
104+
"exported"
105105
],
106106
ExpressionStatement: [
107107
"expression"

0 commit comments

Comments
 (0)