We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 491ca33 commit 15639d6Copy full SHA for 15639d6
eslint.config.js
@@ -23,7 +23,7 @@ module.exports = [
23
plugins: {
24
eslintPlugin,
25
importPlugin,
26
- filenames,
+ filenamesPlugin: fixupPluginRules(filenames),
27
'i18n-text': fixupPluginRules(i18nTextPlugin),
28
},
29
rules: {
test-examples/flat/src/getAttribute.js
@@ -6,3 +6,9 @@ const title = document.createElement('h1')
6
title.textContent = `${title}!`
7
8
foobar(title)
9
+
10
+document.addEventListener('click', async function (event) {
11
+ const data = await fetch()
12
13
+ event.preventDefault()
14
+})
0 commit comments