Fork with FAFO patches
Find a file
Joel Collins 6e881c4f43 Close #55
2020-06-05 09:59:05 +01:00
public Updated package name and version number 2020-06-05 09:45:14 +01:00
src Close #55 2020-06-05 09:59:05 +01:00
.env.development Revert "Track dist" 2020-06-01 12:58:43 +00:00
.env.production Revert "Track dist" 2020-06-01 12:58:43 +00:00
.eslintrc.js Great big ESLint 2019-11-11 16:33:43 +00:00
.gitignore Added lite-mode build target 2020-02-12 14:19:19 +00:00
babel.config.js Removed NativeScript without breaking everything 2019-05-12 21:43:12 +01:00
CONTRIBUTING.md Update CONTRIBUTING.md 2019-05-24 10:47:25 +00:00
LICENSE Updated package name and version number 2020-06-05 09:45:14 +01:00
package-lock.json Updated package name and version number 2020-06-05 09:45:14 +01:00
package.json Updated package name and version number 2020-06-05 09:45:14 +01:00
README.md Updated package name and version number 2020-06-05 09:45:14 +01:00
vue.config.js Revert "Track dist" 2020-06-01 12:58:43 +00:00
webpack.config.js Great big ESLint 2019-11-11 16:33:43 +00:00

OpenFlexure Microscope JS Client

pipeline status

A user client for the OpenFlexure Microscope, written in Vue.js.

Install

A general guide on setting up your microscope can be found here on our website.

Develop

  • Clone the repo, and run npm install
  • Scripts to build and serve are included in package.json

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
}