|
1 | 1 | { |
2 | 2 | "$schema": "https://raw.githubusercontent.com/oxc-project/oxc/main/npm/oxlint/configuration_schema.json", |
3 | | - "plugins": ["typescript", "unicorn", "import"], |
4 | | - "jsPlugins": ["./oxlint-plugin/index.mts"], |
| 3 | + "plugins": [ |
| 4 | + "typescript", |
| 5 | + "unicorn", |
| 6 | + "import" |
| 7 | + ], |
| 8 | + "jsPlugins": [ |
| 9 | + "./oxlint-plugin/index.mts" |
| 10 | + ], |
5 | 11 | "categories": { |
6 | 12 | "correctness": "error", |
7 | 13 | "suspicious": "error" |
8 | 14 | }, |
9 | 15 | "rules": { |
10 | | - "eslint/curly": ["error", "all"], |
| 16 | + "eslint/curly": [ |
| 17 | + "error", |
| 18 | + "all" |
| 19 | + ], |
11 | 20 | "eslint/no-await-in-loop": "off", |
12 | 21 | "eslint/no-console": "off", |
13 | 22 | "eslint/no-control-regex": "off", |
|
18 | 27 | } |
19 | 28 | ], |
20 | 29 | "eslint/no-new": "error", |
21 | | - "eslint/no-underscore-dangle": "off", |
22 | 30 | "eslint/no-proto": "error", |
23 | 31 | "eslint/no-shadow": "off", |
| 32 | + "eslint/no-underscore-dangle": "off", |
24 | 33 | "eslint/no-unmodified-loop-condition": "off", |
25 | 34 | "eslint/no-unused-vars": "off", |
26 | 35 | "eslint/no-useless-catch": "off", |
|
41 | 50 | "socket/no-default-export": "error", |
42 | 51 | "socket/no-dynamic-import-outside-bundle": "error", |
43 | 52 | "socket/no-fetch-prefer-http-request": "error", |
| 53 | + "socket/no-file-scope-oxlint-disable": "error", |
44 | 54 | "socket/no-inline-logger": "error", |
45 | 55 | "socket/no-logger-newline-literal": "error", |
46 | 56 | "socket/no-npx-dlx": "error", |
|
155 | 165 | "**/scripts/ai-lint-fix.mts", |
156 | 166 | "**/scripts/ai-lint-fix/cli.mts", |
157 | 167 | "**/scripts/ai-lint-fix/rule-guidance.mts", |
| 168 | + "**/scripts/check-lock-step-header.mts", |
| 169 | + "**/scripts/check-lock-step-refs.mts", |
158 | 170 | "**/scripts/check-paths.mts", |
159 | 171 | "**/scripts/check-paths/allowlist.mts", |
160 | 172 | "**/scripts/check-paths/cli.mts", |
|
188 | 200 | "**/scripts/security.mts", |
189 | 201 | "**/scripts/socket-wheelhouse-emit-schema.mts", |
190 | 202 | "**/scripts/socket-wheelhouse-schema.mts", |
| 203 | + "**/scripts/test/check-lock-step-header.test.mts", |
| 204 | + "**/scripts/test/check-lock-step-refs.test.mts", |
191 | 205 | "**/scripts/test/install-git-hooks.test.mts", |
192 | 206 | "**/scripts/update.mts", |
193 | 207 | "**/scripts/validate-bundle-deps.mts", |
|
0 commit comments