Skip to content
Merged
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
2 changes: 1 addition & 1 deletion backend/.oxlintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": [
"../packages/oxlint-config/index.json"
"../packages/oxlint-config/index.jsonc"
// "@monkeytype/oxlint-config"
],
"overrides": [
Expand Down
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
"eslint": "8.57.1",
"eslint-watch": "8.0.0",
"openapi3-ts": "2.0.2",
"oxlint": "1.13.0",
"oxlint": "1.15.0",
"readline-sync": "1.4.10",
"supertest": "6.2.3",
"testcontainers": "11.4.0",
Expand Down
2 changes: 1 addition & 1 deletion frontend/.oxlintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": [
"../packages/oxlint-config/index.json"
"../packages/oxlint-config/index.jsonc"
// "@monkeytype/oxlint-config"
],
"overrides": [
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"madge": "8.0.0",
"magic-string": "0.30.17",
"normalize.css": "8.0.1",
"oxlint": "1.13.0",
"oxlint": "1.15.0",
"postcss": "8.4.31",
"sass": "1.70.0",
"subset-font": "2.3.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"knip": "2.19.2",
"lint-staged": "13.2.3",
"only-allow": "1.2.1",
"oxlint": "1.14.0",
"oxlint": "1.15.0",
"prettier": "2.8.8",
"turbo": "2.5.6",
"vitest": "3.2.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/.oxlintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": [
"../oxlint-config/index.json"
"../oxlint-config/index.jsonc"
// "@monkeytype/oxlint-config"
]
}
2 changes: 1 addition & 1 deletion packages/contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"@monkeytype/typescript-config": "workspace:*",
"eslint": "8.57.1",
"madge": "8.0.0",
"oxlint": "1.13.0",
"oxlint": "1.15.0",
"tsup": "8.4.0",
"typescript": "5.5.4",
"vitest": "3.2.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/funbox/.oxlintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": [
"../oxlint-config/index.json"
"../oxlint-config/index.jsonc"
// "@monkeytype/oxlint-config"
]
}
2 changes: 1 addition & 1 deletion packages/funbox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@monkeytype/typescript-config": "workspace:*",
"eslint": "8.57.1",
"madge": "8.0.0",
"oxlint": "1.13.0",
"oxlint": "1.15.0",
"tsup": "8.4.0",
"typescript": "5.5.4",
"vitest": "3.2.4"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,7 @@
},
"plugins": ["typescript", "unicorn", "oxc", "import", "node", "promise"],
"rules": {
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^(_|e|event)",
"caughtErrorsIgnorePattern": "^(_|e|error)",
"varsIgnorePattern": "^_"
}
],
// disabled rules
"no-await-in-loop": "off",
"consistent-function-scoping": "off",
"prefer-add-event-listener": "off",
Expand All @@ -23,8 +16,19 @@
"no-useless-spread": "off",
"no-async-endpoint-handlers": "off",
"no-this-alias": "off",
"no-var": "error",
"no-unassigned-import": "off",
"no-array-reverse": "off", // disabled for compatibility

// enabled rules
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^(_|e|event)",
"caughtErrorsIgnorePattern": "^(_|e|error)",
"varsIgnorePattern": "^_"
}
],
"no-var": "error",
"no-non-null-assertion": "error",
"no-non-null-asserted-nullish-coalescing": "error",
"no-explicit-any": "error",
Expand Down Expand Up @@ -92,10 +96,10 @@
}
],

"todo": "off",
// todo: enable
"no-array-for-each": "off",

"consider": "off",
// consider these for the future
"no-cycle": "off",
"no-nested-ternary": "off"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/release/.oxlintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": [
"../oxlint-config/index.json"
"../oxlint-config/index.jsonc"
// "@monkeytype/oxlint-config"
]
}
2 changes: 1 addition & 1 deletion packages/release/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@monkeytype/eslint-config": "workspace:*",
"eslint": "8.57.1",
"nodemon": "3.1.4",
"oxlint": "1.13.0"
"oxlint": "1.15.0"
},
"bin": {
"monkeytype-release": "./src/index.js"
Expand Down
2 changes: 1 addition & 1 deletion packages/schemas/.oxlintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": [
"../oxlint-config/index.json"
"../oxlint-config/index.jsonc"
// "@monkeytype/oxlint-config"
]
}
2 changes: 1 addition & 1 deletion packages/schemas/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@monkeytype/typescript-config": "workspace:*",
"eslint": "8.57.1",
"madge": "8.0.0",
"oxlint": "1.13.0",
"oxlint": "1.15.0",
"tsup": "8.4.0",
"typescript": "5.5.4",
"vitest": "3.2.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/tsup-config/.oxlintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": [
"../oxlint-config/index.json"
"../oxlint-config/index.jsonc"
// "@monkeytype/oxlint-config"
]
}
2 changes: 1 addition & 1 deletion packages/tsup-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"devDependencies": {
"@monkeytype/typescript-config": "workspace:*",
"eslint": "8.57.1",
"oxlint": "1.13.0",
"oxlint": "1.15.0",
"typescript": "5.5.4"
},
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion packages/util/.oxlintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": [
"../oxlint-config/index.json"
"../oxlint-config/index.jsonc"
// "@monkeytype/oxlint-config"
]
}
2 changes: 1 addition & 1 deletion packages/util/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@monkeytype/typescript-config": "workspace:*",
"eslint": "8.57.1",
"madge": "8.0.0",
"oxlint": "1.13.0",
"oxlint": "1.15.0",
"tsup": "8.4.0",
"typescript": "5.5.4",
"vitest": "3.2.4",
Expand Down
Loading
Loading