PSA/server/eslint.config.js
Hermes 284313f908
Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Initial import of AlgaPSA codebase from PSA server
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz

Source: /opt/alga-psa on psa.joliet.tech
2026-06-22 16:12:17 -05:00

147 lines
4.3 KiB
JavaScript

import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "@typescript-eslint/eslint-plugin";
import tsParser from "@typescript-eslint/parser";
import pluginReact from "eslint-plugin-react";
import customRules from "../eslint-plugin-custom-rules/index.js";
import { fileURLToPath } from "url";
import path from "path";
const __dirname = path.dirname(fileURLToPath(import.meta.url));
/** @type {import('eslint').Linter.FlatConfig[]} */
export default [
{
files: ["**/*.{js,mjs,ts,jsx,tsx}"],
ignores: [
"../eslint-plugin-custom-rules/**/*",
"eslint.config.js",
"**/eslint.config.js"
],
// Define language options
languageOptions: {
globals: {
...globals.browser,
React: true,
JSX: true
},
parser: tsParser,
parserOptions: {
ecmaVersion: 2020,
sourceType: "module",
project: [path.join(__dirname, "tsconfig.eslint.json")],
ecmaFeatures: {
jsx: true
},
tsconfigRootDir: __dirname,
},
},
// Add base rules and plugins
plugins: {
"@typescript-eslint": tseslint,
"custom-rules": customRules,
},
rules: {
// TypeScript rules
"@typescript-eslint/explicit-function-return-type": [
"warn",
{
allowExpressions: true,
allowTypedFunctionExpressions: true,
allowFunctionsWithoutTypeParameters: true,
},
],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": ["off", { argsIgnorePattern: "^_" }],
"@typescript-eslint/no-unsafe-assignment": "warn",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-return": "warn",
"@typescript-eslint/no-unsafe-call": "warn",
"@typescript-eslint/no-unsafe-argument": "warn",
"@typescript-eslint/no-misused-promises": "warn",
"@typescript-eslint/await-thenable": "warn",
"@typescript-eslint/no-floating-promises": "warn",
"@typescript-eslint/no-unnecessary-type-assertion": "warn",
"@typescript-eslint/restrict-plus-operands": "warn",
"@typescript-eslint/restrict-template-expressions": "warn",
"@typescript-eslint/unbound-method": "warn",
"@typescript-eslint/no-non-null-assertion": "warn",
// Custom rules as warnings
"custom-rules/map-return-type": "off",
"custom-rules/check-required-props": "error",
// Base ESLint rules
"no-unused-vars": "off", // Turn off in favor of @typescript-eslint/no-unused-vars
"react/react-in-jsx-scope": "off", // Not needed in Next.js
"no-undef": "off", // TypeScript handles this
"react/prop-types": "off", // TypeScript handles this
// Override recommended configs to use warnings
...Object.fromEntries(
Object.entries({
...tseslint.configs.recommended.rules,
...tseslint.configs["recommended-requiring-type-checking"].rules,
...tseslint.configs.strict.rules,
}).map(([key, value]) => [
key,
typeof value === 'string' ? 'warn' : ['warn', ...(Array.isArray(value) ? value.slice(1) : [])],
])
),
},
settings: {
typescript: {
alwaysTryTypes: true,
}
}
},
// Add plugin-specific configurations with warnings
{
...pluginJs.configs.recommended,
rules: Object.fromEntries(
Object.entries(pluginJs.configs.recommended.rules || {}).map(([key, value]) => [
key,
typeof value === 'string' ? 'warn' : ['warn', ...(Array.isArray(value) ? value.slice(1) : [])],
])
),
},
{
...pluginReact.configs.flat.recommended,
rules: Object.fromEntries(
Object.entries(pluginReact.configs.flat.recommended.rules || {}).map(([key, value]) => [
key,
typeof value === 'string' ? 'warn' : ['warn', ...(Array.isArray(value) ? value.slice(1) : [])],
])
),
settings: {
react: {
version: "18.2"
}
}
},
// Configuration for migration files
{
files: ["migrations/**/*.cjs"],
languageOptions: {
globals: {
...globals.node
},
parserOptions: {
ecmaVersion: 2020,
sourceType: "script"
}
},
rules: {
...pluginJs.configs.recommended.rules,
"no-unused-vars": "warn",
"no-undef": "error"
}
}
];