Skip to content

Commit 68bae74

Browse files
authoredJun 6, 2024
style(lib/core): var -> let and const codemod (#4457)
Just like #4451 but for `lib/core` This does add an `.eslintignore` line, perhaps we'd rather skip a file a different way. Smaller part of the full vision: #4444
1 parent e32f803 commit 68bae74

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+202
-188
lines changed
 

‎.eslintignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
**/node_modules/*
2+
**/tmp/*
3+
4+
build/tasks/aria-supported.js
5+
6+
doc/api/*
7+
doc/examples/jest_react/*.js
8+
9+
lib/core/imports/*.js
10+
lib/core/utils/uuid.js
11+
axe.js
12+
axe.min.js

‎eslint.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ module.exports = [
189189
'doc/api/*',
190190
'doc/examples/jest_react/*.js',
191191
'lib/core/imports/*.js',
192+
'lib/core/utils/uuid.js',
192193
'axe.js',
193194
'axe.min.js'
194195
]

0 commit comments

Comments
 (0)
Failed to load comments.