Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions e2e/browser/test-app/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],

Check failure on line 4 in e2e/browser/test-app/tsconfig.json

View workflow job for this annotation

GitHub Actions / lint / lint

Replace `⏎······"dom",⏎······"dom.iterable",⏎······"esnext"⏎····` with `"dom",·"dom.iterable",·"esnext"`
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -31,8 +27,5 @@
"next.config.js",
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
".next"
]
"exclude": ["node_modules", ".next"]
}
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"useNx": true,
"version": "4.0.5"
}
}
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions packages/eslint-config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,13 @@ export default defineConfig([
language: "markdown/gfm",
extends: ["markdown/recommended"],
},
{
// Disable Prettier for Markdown (parsing error)
rules: {
"prettier/prettier": "off",
},
files: ["**/*.md"],
},
// Tests linting
{
...jest.configs["flat/recommended"],
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-playwright": "^2.3.0",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
Expand Down
4 changes: 1 addition & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
"extends": "./tsconfig.base.json",
"compilerOptions": {
"paths": {
"@/*": [
"./*"
]
"@/*": ["./*"]
}
}
}
Loading