Files
sveltekit-demo-app-adapter-…/.eslintrc.cjs
Matthias Andrasch e6e8fc3252 chore: init
2024-04-27 12:09:47 +02:00

16 lines
317 B
JavaScript

/** @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
}
};