logicguru-engine
Version:
Advanced JSON-based rule engine with nested conditions, async evaluation, and flexible action system. Perfect for business rules, workflows, and decision automation.
29 lines • 782 B
JSON
{
"env": {
"node": true,
"es2022": true,
"jest": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"indent": ["error", 2],
"linebreak-style": ["error", "windows"],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"no-unused-vars": ["warn"],
"no-console": ["warn"],
"no-undef": ["error"],
"no-var": ["error"],
"prefer-const": ["error"],
"no-multiple-empty-lines": ["error", { "max": 1 }],
"no-trailing-spaces": ["error"],
"eol-last": ["error", "always"],
"comma-dangle": ["error", "always-multiline"],
"arrow-parens": ["error", "always"],
"no-prototype-builtins": ["error"]
}
}