Skip to content

Commit be88eca

Browse files
authored
Merge pull request #2118 from iptv-org/patch-2025.11.1
Patch 2025.11.1
2 parents a5ba29e + d6182d2 commit be88eca

File tree

288 files changed

+7839
-6317
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

288 files changed

+7839
-6317
lines changed

.prettierrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"singleQuote": true,
3+
"semi": false,
4+
"printWidth": 100,
5+
"trailingComma": "none",
6+
"arrowParens": "avoid",
7+
"plugins": ["prettier-plugin-svelte"],
8+
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
9+
}

eslint.config.js

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
import svelteConfig from './svelte.config.js'
2+
import { defineConfig } from 'eslint/config'
3+
import svelte from 'eslint-plugin-svelte'
4+
import ts from 'typescript-eslint'
5+
import globals from 'globals'
6+
import js from '@eslint/js'
7+
8+
export default defineConfig([
9+
js.configs.recommended,
10+
...ts.configs.recommended,
11+
...svelte.configs.recommended,
12+
13+
{
14+
languageOptions: {
15+
globals: {
16+
...globals.browser,
17+
...globals.node
18+
}
19+
}
20+
},
21+
22+
{
23+
files: ['**/*.svelte'],
24+
languageOptions: {
25+
parserOptions: {
26+
projectService: true,
27+
extraFileExtensions: ['.svelte'],
28+
parser: ts.parser,
29+
svelteConfig
30+
}
31+
}
32+
},
33+
34+
{
35+
ignores: ['tests/__data__/**', 'docs/**', '.svelte-kit/**']
36+
},
37+
38+
{
39+
rules: {
40+
'svelte/no-navigation-without-resolve': 'off',
41+
'svelte/no-at-html-tags': 'off'
42+
}
43+
}
44+
])

0 commit comments

Comments
 (0)