mirror of https://github.com/sveltejs/svelte
original: '@typescript-eslint/no-unused-vars': ['error', { args: 'none' }]'
revised : '@typescript-eslint/no-unused-vars': ['error', { args: 'after-used', argsIgnorePattern: '^_' }]'
pull/6798/head
parent
547fbc6ebd
commit
d4d936a2b4
@ -1,5 +1,5 @@
|
||||
export default {
|
||||
test({ assert, component }) {
|
||||
test({ component }) {
|
||||
component.l1.$destroy();
|
||||
}
|
||||
};
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
export default {
|
||||
html: '',
|
||||
|
||||
test({ assert, component, target }) {
|
||||
test({ assert, target }) {
|
||||
assert.htmlEqual(target.innerHTML, 'NaN');
|
||||
}
|
||||
};
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
export default {
|
||||
test({ assert, component, target, window }) {
|
||||
test({ assert, window }) {
|
||||
assert.equal(window.document.title, 'changed');
|
||||
}
|
||||
};
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue