feat(create-turbo): apply official-starter transform

This commit is contained in:
Turbobot
2025-10-06 16:18:41 +02:00
committed by Andras Bacsai
parent 84da487a0c
commit 5d8a02f127
56 changed files with 3465 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
import js from '@eslint/js';
import svelte from 'eslint-plugin-svelte';
import globals from 'globals';
import ts from 'typescript-eslint';
export const config = ts.config(
js.configs.recommended,
...ts.configs.recommended,
...svelte.configs['flat/recommended'],
{
languageOptions: {
globals: {
...globals.browser,
...globals.node
}
}
},
{
files: ['**/*.svelte'],
ignores: ['.svelte-kit/*'],
languageOptions: {
parserOptions: {
parser: ts.parser
}
}
}
);

View File

@@ -0,0 +1,17 @@
{
"name": "@repo/eslint-config",
"version": "0.0.0",
"type": "module",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"eslint-config-prettier": "^10.1.1",
"eslint-config-turbo": "^2.5.0",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.15.0",
"typescript-eslint": "^8.40.0"
}
}