aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/.oxlintrc.json
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/.oxlintrc.json')
-rw-r--r--apps/web/.oxlintrc.json35
1 files changed, 35 insertions, 0 deletions
diff --git a/apps/web/.oxlintrc.json b/apps/web/.oxlintrc.json
new file mode 100644
index 00000000..3a2cb742
--- /dev/null
+++ b/apps/web/.oxlintrc.json
@@ -0,0 +1,35 @@
+{
+ "$schema": "../../node_modules/oxlint/configuration_schema.json",
+ "extends": [
+ "../../tooling/oxlint/oxlint-base.json",
+ "../../tooling/oxlint/oxlint-nextjs.json",
+ "../../tooling/oxlint/oxlint-react.json"
+ ],
+ "categories": {
+ "correctness": "warn"
+ },
+ "env": {
+ "builtin": true,
+ "commonjs": true,
+ "browser": true,
+ "es2022": true,
+ "node": true
+ },
+ "globals": {
+ "React": "writeable"
+ },
+ "settings": {
+ "react": {
+ "version": "detect"
+ }
+ },
+ "ignorePatterns": [
+ "**/*.config.js",
+ "**/*.config.cjs",
+ "**/.eslintrc.cjs",
+ ".next",
+ "dist",
+ "build",
+ "pnpm-lock.yaml"
+ ]
+}