diff --git a/front_end/.oxfmtrc.json b/front_end/.oxfmtrc.json new file mode 100644 index 0000000..2a67077 --- /dev/null +++ b/front_end/.oxfmtrc.json @@ -0,0 +1,6 @@ +{ + "$schema": "./node_modules/oxfmt/configuration_schema.json", + "printWidth": 80, + "sortImports": {}, + "ignorePatterns": [] +} diff --git a/front_end/.oxlintrc.json b/front_end/.oxlintrc.json new file mode 100644 index 0000000..deeaa36 --- /dev/null +++ b/front_end/.oxlintrc.json @@ -0,0 +1,13 @@ +{ + "$schema": "./node_modules/oxlint/configuration_schema.json", + "plugins": ["react", "typescript", "import"], + "ignorePatterns": [], + "rules": { + "no-console": ["warn", { "allow": ["warn", "error"] }], + "typescript/consistent-type-imports": "warn", + "typescript/no-unused-vars": [ + "warn", + { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" } + ] + } +}