ExtraStatic: powerful and easy publishing

Skip to content
Snippets Groups Projects
Forked from svekyll / svekyll
80 commits behind, 20 commits ahead of the upstream repository.
.eslintrc.cjs 296 B
module.exports = {
	root: true,
	extends: ['eslint:recommended', 'prettier'],
	plugins: ['svelte3'],
	overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],
	parserOptions: {
		sourceType: 'module',
		ecmaVersion: 2019
	},
	env: {
		browser: true,
		es2017: true,
		node: true
	}
};