"capitalized-comments": "off",
"curly": ["error", "multi-line"],
"func-names": "off",
- // "func-style": ["error", "declaration"],
+ "func-style": ["error", "declaration"],
"id-length": ["error", { "min": 1 }],
"line-comment-position": "off",
"logical-assignment-operators": ["error", "never"],
// Temporarily disabled rules
- "func-style": "off",
"max-lines": "off",
"max-lines-per-function": "off",
"no-invalid-this": "off",
function process_history_legacy(data) {
const items = [];
- const compare = function (e1, e2) {
- return e1.name.localeCompare(e2.name);
- };
+ function compare(e1, e2) { return e1.name.localeCompare(e2.name); }
$("#selSymOrder_history, label[for='selSymOrder_history']").hide();