Skip to content

Commit 933d86c

Browse files
committed
Refactor blog section to use SvelteKit instead of Markdown
1 parent 665956e commit 933d86c

File tree

111 files changed

+11625
-6056
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+11625
-6056
lines changed

eslint.config.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export default [
3232
'package-lock.json'
3333
],
3434
rules: {
35+
'@typescript-eslint/require-await': 'off',
3536
'prettier/prettier': 'error',
3637
'no-sparse-arrays': 'off',
3738
'no-undef': 'off',
@@ -41,7 +42,6 @@ export default [
4142
'no-unused-vars': 'off',
4243
'no-constant-condition': 'off',
4344
'no-cond-assign': 'off',
44-
'@typescript-eslint/require-await': 'off',
4545
'no-control-regex': 'off',
4646
'no-case-declarations': 'off',
4747
'no-self-assign': 'off',
@@ -51,7 +51,8 @@ export default [
5151
'no-redeclare': 'off',
5252
'no-extra-boolean-cast': 'off',
5353
'no-misleading-character-class': 'off',
54-
'no-unused-disable': 'off'
54+
'no-unused-disable': 'off',
55+
'no-unused-disable-directive': 'off'
5556
},
5657
plugins: {
5758
prettier: eslintPluginPrettier,
@@ -75,8 +76,9 @@ export default [
7576
'no-unused-vars': 'off',
7677
'no-control-regex': 'off',
7778
'no-fallthrough': 'off',
78-
'@typescript-eslint/require-await': 'off',
79-
'no-unused-labels': 'off'
79+
'no-unused-labels': 'off',
80+
'no-warning-comments': 'off',
81+
'no-unused-disable-directive': 'off'
8082
}
8183
},
8284

0 commit comments

Comments
 (0)