mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-31 20:57:48 +00:00
aa984c4909
- Update `.gitignore` to include `lab/` for backtesting and raw data. - Refactor `app.py` to improve error handling and logging. - Remove deprecated files: `core/bot_logic.py`, `core/bots/base_bot.py`, `core/bots/manager.py`, `core/db/database.py`, `core/routes/api_analysis.py`, `core/routes/api_bots_analysis.py`, `core/strategies/logic_ma.py`, `core/strategies/logic_rsi.py`. - Modify multiple files to enhance bot management, routing, and strategy handling. - Update JavaScript and HTML templates for better UI and functionality.
52 lines
1.1 KiB
JavaScript
52 lines
1.1 KiB
JavaScript
/**
|
|
* @fileoverview Rule to enforce `default` clauses in `switch` statements to be last
|
|
* @author Milos Djermanovic
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** @type {import('../types').Rule.RuleModule} */
|
|
module.exports = {
|
|
meta: {
|
|
type: "suggestion",
|
|
|
|
docs: {
|
|
description:
|
|
"Enforce `default` clauses in `switch` statements to be last",
|
|
recommended: false,
|
|
url: "https://eslint.org/docs/latest/rules/default-case-last",
|
|
},
|
|
|
|
schema: [],
|
|
|
|
messages: {
|
|
notLast: "Default clause should be the last clause.",
|
|
},
|
|
},
|
|
|
|
create(context) {
|
|
return {
|
|
SwitchStatement(node) {
|
|
const cases = node.cases,
|
|
indexOfDefault = cases.findIndex(c => c.test === null);
|
|
|
|
if (
|
|
indexOfDefault !== -1 &&
|
|
indexOfDefault !== cases.length - 1
|
|
) {
|
|
const defaultClause = cases[indexOfDefault];
|
|
|
|
context.report({
|
|
node: defaultClause,
|
|
messageId: "notLast",
|
|
});
|
|
}
|
|
},
|
|
};
|
|
},
|
|
};
|