Browse Source

Merge pull request #3008 from moisseev/eslint

[Test] ESLint: Do not enforce line breaks
tags/2.0
Vsevolod Stakhov 4 years ago
parent
commit
622323beb5
No account linked to committer's email address
2 changed files with 3 additions and 1 deletions
  1. 1
    0
      .eslintrc.json
  2. 2
    1
      interface/js/main.js

+ 1
- 0
.eslintrc.json View File

@@ -16,6 +16,7 @@
"dot-location": ["error", "property"],
"func-names": "off",
// "func-style": ["error", "declaration"],
"function-call-argument-newline": "off",
"id-length": ["error", { "min": 1 }],
"indent": ["error", 4, { "SwitchCase": 1 }],
// "max-len": ["error", { "code": 120 }],

+ 2
- 1
interface/js/main.js View File

@@ -21,7 +21,8 @@ requirejs.config({
d3evolution: {exports:"D3Evolution", deps:["d3", "jquery"]},
footable: {deps:["bootstrap", "jquery"]},
stickytabs: {deps:["jquery"]}
}
},
waitSeconds: 30,
});

document.title = window.location.hostname +

Loading…
Cancel
Save