lint, remove solo, changelog

pull/6504/head
Simon Holthausen 5 years ago
parent 39fab6ee8b
commit c98b878d4d

@ -14,6 +14,7 @@
* New a11y warning `a11y-mouse-events-have-key-events` which checks that `mouseover`/`mouseout` are accompanied by `focus`/`blur` event handlers ([#5938](https://github.com/sveltejs/svelte/pull/5938))
* Remove deprecated `a11y-no-onchange warning` ([#6457](https://github.com/sveltejs/svelte/issues/6457))
* Remove `a11y-media-has-caption` from `audio` elements ([#6054](https://github.com/sveltejs/svelte/issues/6054))
* Make it possible to silence more warnings ([#5954](https://github.com/sveltejs/svelte/issues/5954))
## 3.38.3

@ -12,6 +12,6 @@ export default class Comment extends Node {
constructor(component: Component, parent: Node, scope: TemplateScope, info: TemplateNode) {
super(component, parent, scope, info);
this.data = info.data;
this.ignores = extract_svelte_ignore(this.data)
this.ignores = extract_svelte_ignore(this.data);
}
}

@ -1,4 +1,4 @@
import { flatten } from "./flatten";
import { flatten } from './flatten';
const pattern = /^\s*svelte-ignore\s+([\s\S]+)\s*$/m;

Loading…
Cancel
Save