Skip to content

Commit

Permalink
Add QC plots (currently hidden except special URL)
Browse files Browse the repository at this point in the history
Updated Spectral Storage Service (Spectr) connector Jars.
New QC plots from new Spectr data (and existing Spectr data)
Updated Spectr to store new per scan data:
Ion Injection Time
Single scan Level Total Ion Current

Also added ESLint to Front End config.
Some JS updated to remove ES Lint errors.
  • Loading branch information
danjasuw committed Mar 5, 2020
1 parent 765f623 commit 67b4ff9
Show file tree
Hide file tree
Showing 35 changed files with 7,365 additions and 1,572 deletions.
Binary file not shown.
30 changes: 30 additions & 0 deletions proxl_web_app/front_end/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
module.exports = {
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"jquery": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly",
"google": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"no-empty": "off",
"no-unused-vars": "off",
"no-constant-condition": "off",
"no-mixed-spaces-and-tabs": 0, // disable rule
}
};
11 changes: 11 additions & 0 deletions proxl_web_app/front_end/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"compilerOptions": {
"target": "ES6"
},
"exclude": [
"node_modules",
"./handlebars_templates_precompiled/**/*",
"**/__snapshots__/*",
"**/*.snap"
]
}

0 comments on commit 67b4ff9

Please sign in to comment.