Skip to content

Commit a3825f6

Browse files
committed
Keep Prettier for Svelte tooling
1 parent 40806bd commit a3825f6

84 files changed

Lines changed: 447 additions & 714 deletions

File tree

Some content is hidden

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

src/Exceptionless.Web/ClientApp/.oxfmtrc.json

Lines changed: 0 additions & 23 deletions
This file was deleted.

src/Exceptionless.Web/ClientApp/.oxlintrc.json

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,17 @@
1212
"src/lib/generated/**",
1313
"storybook-static/**"
1414
],
15-
"options": {
16-
"typeAware": true
17-
},
1815
"overrides": [
1916
{
2017
"files": ["**/*.svelte"],
2118
"rules": {
22-
"eslint/no-unassigned-vars": "off"
19+
"eslint/no-unassigned-vars": "off",
20+
"no-unused-vars": "off"
2321
}
2422
}
2523
],
2624
"plugins": ["eslint", "typescript", "unicorn", "oxc", "import"],
2725
"rules": {
28-
"no-unused-vars": "off",
29-
"typescript/no-duplicate-type-constituents": "off",
30-
"typescript/no-floating-promises": "off",
31-
"typescript/no-misused-spread": "off",
32-
"typescript/no-redundant-type-constituents": "off",
33-
"typescript/restrict-template-expressions": "off",
34-
"typescript/unbound-method": "off",
3526
"unicorn/no-empty-file": "off",
3627
"unicorn/no-useless-fallback-in-spread": "off",
3728
"unicorn/prefer-string-starts-ends-with": "off"
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Package Managers
2+
package-lock.json
3+
pnpm-lock.yaml
4+
yarn.lock
5+
6+
# Generated files
7+
src/lib/generated
8+
playwright-report
9+
test-results
10+
11+
# Third-party
12+
.agents/
13+
14+
# UI components (shadcn)
15+
src/lib/features/shared/components/ui
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"overrides": [
3+
{
4+
"files": "*.svelte",
5+
"options": {
6+
"parser": "svelte"
7+
}
8+
}
9+
],
10+
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
11+
"printWidth": 160,
12+
"singleQuote": true,
13+
"trailingComma": "none",
14+
"endOfLine": "auto"
15+
}

0 commit comments

Comments
 (0)