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 36eef5b commit 7449190Copy full SHA for 7449190
.eslintrc.json
@@ -6,6 +6,14 @@
6
"files": "*.js",
7
"parser": "espree",
8
"parserOptions": {"ecmaVersion": 8}
9
+ },
10
+ {
11
+ "files": "test/test.js",
12
+ "rules": {
13
+ "import/extensions": "off",
14
+ "import/no-unresolved": "off",
15
+ "github/no-inner-html": "off"
16
+ }
17
}
18
]
19
test/test.js
@@ -2,7 +2,8 @@ import subscribe from '../dist/index.esm.js'
2
3
describe('paste-markdown', function () {
4
describe('installed on textarea', function () {
5
- let subscription, textarea
+ let subscription
+ let textarea
beforeEach(function () {
document.body.innerHTML = `
<textarea data-paste-markdown></textarea>
0 commit comments