mirror of
https://github.com/BradNut/skeleton
synced 2025-09-08 17:40:25 +00:00
16 lines
296 B
JavaScript
16 lines
296 B
JavaScript
|
|
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
|
||
|
|
}
|
||
|
|
};
|