mirror of https://github.com/sveltejs/svelte
Updated to ESLint config 5.4.0 (#5541)
parent
379a4454c1
commit
ddf13211af
@ -1,3 +1,3 @@
|
|||||||
export function is_head(node) {
|
export function is_head(node) {
|
||||||
return node && node.type === 'MemberExpression' && node.object.name === '@_document' && node.property.name === 'head';
|
return node && node.type === 'MemberExpression' && node.object.name === '@_document' && node.property.name === 'head';
|
||||||
}
|
}
|
||||||
|
@ -1 +1 @@
|
|||||||
export const test = typeof process !== 'undefined' && process.env.TEST;
|
export const test = typeof process !== 'undefined' && process.env.TEST;
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
class CustomButton extends HTMLButtonElement {}
|
class CustomButton extends HTMLButtonElement {}
|
||||||
customElements.define('custom-button', CustomButton, { extends: 'button' });
|
customElements.define('custom-button', CustomButton, { extends: 'button' });
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
export default {
|
export default {
|
||||||
dev: true
|
dev: true
|
||||||
};
|
};
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
import { writable } from '../../../../store';
|
import { writable } from '../../../../store';
|
||||||
|
|
||||||
export const count = writable(0);
|
export const count = writable(0);
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue