chore: init

This commit is contained in:
Matthias Andrasch
2024-04-27 12:09:47 +02:00
parent 687ed7a1c6
commit e6e8fc3252
34 changed files with 14364 additions and 1 deletions

15
.eslintrc.cjs Normal file
View File

@@ -0,0 +1,15 @@
/** @type { import("eslint").Linter.Config } */
module.exports = {
root: true,
extends: ['eslint:recommended', 'plugin:svelte/recommended', 'prettier'],
parserOptions: {
sourceType: 'module',
ecmaVersion: 2020,
extraFileExtensions: ['.svelte']
},
env: {
browser: true,
es2017: true,
node: true
}
};