We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 373a292 commit 45eacd3Copy full SHA for 45eacd3
.eslintrc.json
@@ -1,9 +1,14 @@
1
{
2
"root": true,
3
+ "plugins": ["github"],
4
"extends": [
5
"plugin:github/browser",
6
+ "plugin:github/recommended",
7
"plugin:github/typescript"
8
],
9
+ "rules": {
10
+ "github/no-then": "off"
11
+ },
12
"overrides": [
13
14
"files": "test/**/*.js",
src/index.ts
@@ -30,7 +30,6 @@ function task(): Promise<void> {
30
31
async function handleData(el: IncludeFragmentElement) {
32
observer.unobserve(el)
33
- // eslint-disable-next-line github/no-then
34
return getData(el).then(
35
function (html: string) {
36
const template = document.createElement('template')
0 commit comments