openflexure-microscope-server/openflexure_microscope/api/static
2020-07-06 10:34:00 +01:00
..
public Switched client from submodule to included 2020-06-25 15:40:51 +01:00
src Added global event listeners to task submitters 2020-07-06 10:34:00 +01:00
.env.development Switched client from submodule to included 2020-06-25 15:40:51 +01:00
.env.production Switched client from submodule to included 2020-06-25 15:40:51 +01:00
.eslintrc.js Switched client from submodule to included 2020-06-25 15:40:51 +01:00
.gitignore Switched client from submodule to included 2020-06-25 15:40:51 +01:00
babel.config.js Switched client from submodule to included 2020-06-25 15:40:51 +01:00
CONTRIBUTING.md Switched client from submodule to included 2020-06-25 15:40:51 +01:00
LICENSE Switched client from submodule to included 2020-06-25 15:40:51 +01:00
package-lock.json Simplified keyboard shortcuts 2020-07-05 18:19:44 +01:00
package.json Simplified keyboard shortcuts 2020-07-05 18:19:44 +01:00
README.md Removed submodule stuff 2020-06-25 15:54:54 +01:00
vue.config.js Switched client from submodule to included 2020-06-25 15:40:51 +01:00

OpenFlexure Microscope JS Client

Developer notes

VS Code and ESLint

To prevent the editor from interfering with ESLint, add to your project settings.json:

{
    "editor.tabSize": 2,
    "cSpell.enabled": false,
    "eslint.validate": [{
            "language": "vue",
            "autoFix": true
        },
        {
            "language": "javascript",
            "autoFix": true
        },
        {
            "language": "javascriptreact",
            "autoFix": true
        }
    ],
    "eslint.autoFixOnSave": true,
    "editor.formatOnSave": false,
    "vetur.validation.template": false
}