mirror of
https://github.com/github-tijlxyz/khatru-pyramid.git
synced 2025-05-22 18:02:07 +00:00
31 lines
601 B
JavaScript
31 lines
601 B
JavaScript
![]() |
module.exports = {
|
||
|
root: true,
|
||
|
extends: [
|
||
|
"eslint:recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:svelte/recommended",
|
||
|
"prettier",
|
||
|
],
|
||
|
parser: "@typescript-eslint/parser",
|
||
|
plugins: ["@typescript-eslint"],
|
||
|
parserOptions: {
|
||
|
sourceType: "module",
|
||
|
ecmaVersion: 2020,
|
||
|
extraFileExtensions: [".svelte"],
|
||
|
},
|
||
|
env: {
|
||
|
browser: true,
|
||
|
es2017: true,
|
||
|
node: true,
|
||
|
},
|
||
|
overrides: [
|
||
|
{
|
||
|
files: ["*.svelte"],
|
||
|
parser: "svelte-eslint-parser",
|
||
|
parserOptions: {
|
||
|
parser: "@typescript-eslint/parser",
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
};
|