Skip to content

Commit 3714c31

Browse files
authored
Merge pull request #88 from mihar-22/master
chore: resolve linting errors
2 parents 9ac3f8d + 467a780 commit 3714c31

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.eslintrc.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ module.exports = {
1414
'simple-import-sort'
1515
],
1616
rules: {
17-
'max-len': ['warn', {'code': 100}],
18-
"simple-import-sort/sort": "error"
17+
'max-len': ['warn', { code: 100 }],
18+
'simple-import-sort/sort': 'error',
19+
'no-multiple-empty-lines': ['error', { max: 2, maxBOF: 2, maxEOF: 0 }]
1920
},
2021
overrides: [
2122
{
@@ -27,4 +28,4 @@ module.exports = {
2728
ecmaVersion: 2019,
2829
sourceType: 'module'
2930
}
30-
};
31+
}

src/__tests__/fixtures/Stopwatch.svelte

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
lapse = Date.now() - startTime
1616
}, 1)
1717
}
18-
19-
return running = true
18+
running = true
2019
}
2120
2221
function handleClearClick () {

0 commit comments

Comments
 (0)