Commit a1ae9479 authored by Joel Collins's avatar Joel Collins
Browse files

Cleaned up store and removed unused FoV setting

parent f187a3a0
Loading
Loading
Loading
Loading
+4 −20
Original line number Diff line number Diff line
module.exports = {
  root: true,

  env: {
    node: true
  },

  extends: [
    "plugin:vue/recommended",
    "eslint:recommended",
    "prettier/vue",
    "plugin:prettier/recommended",
    "plugin:vue/essential",
    "@vue/prettier"
  ],

  extends: ["plugin:vue/recommended", "eslint:recommended", "@vue/prettier"],
  parserOptions: {
    parser: "babel-eslint"
  },
  rules: {
    "vue/component-name-in-template-casing": ["error", "PascalCase"],
    "no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
    "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off"
  },

  globals: {
    $nuxt: true
  },

  parserOptions: {
    parser: "babel-eslint"
  }
};
+3 −9
Original line number Diff line number Diff line
@@ -13760,9 +13760,9 @@
      }
    },
    "vue-loader-v16": {
      "version": "npm:vue-loader@16.0.0-rc.1",
      "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-16.0.0-rc.1.tgz",
      "integrity": "sha512-yR+BS90EOXTNieasf8ce9J3TFCpm2DGqoqdbtiwQ33hon3FyIznLX7sKavAq1VmfBnOeV6It0Htg4aniv8ph1g==",
      "version": "npm:vue-loader@16.0.0-rc.2",
      "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-16.0.0-rc.2.tgz",
      "integrity": "sha512-cz8GK4dgIf1UTC+do80pGvh8BHcCRHLIQVHV9ONVQ8wtoqS9t/+H02rKcQP+TVNg7khgLyQV2+8eHUq7/AFq3g==",
      "dev": true,
      "optional": true,
      "requires": {
@@ -13862,12 +13862,6 @@
      "resolved": "https://registry.npmjs.org/vue-observe-visibility/-/vue-observe-visibility-0.4.6.tgz",
      "integrity": "sha512-xo0CEVdkjSjhJoDdLSvoZoQrw/H2BlzB5jrCBKGZNXN2zdZgMuZ9BKrxXDjNP2AxlcCoKc8OahI3F3r3JGLv2Q=="
    },
    "vue-plugin-load-script": {
      "version": "1.3.2",
      "resolved": "https://registry.npmjs.org/vue-plugin-load-script/-/vue-plugin-load-script-1.3.2.tgz",
      "integrity": "sha512-UQcFanuWBf72/339LxgsPZbMsT5LKUjBzkQfV3xf4ni5fc6Nnx5GNYclODFaQ9FHtOjWhu423bhHrlBHz4MIFg==",
      "dev": true
    },
    "vue-style-loader": {
      "version": "4.1.2",
      "resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.2.tgz",
+2 −4
Original line number Diff line number Diff line
@@ -7,8 +7,8 @@
  "scripts": {
    "serve": "vue-cli-service serve --mode development",
    "build": "vue-cli-service build --mode production",
    "lint": "vue-cli-service lint",
    "prettier": "vue-cli-service lint --fix"
    "lint": "vue-cli-service lint --no-fix",
    "lint:fix": "vue-cli-service lint --fix"
  },
  "dependencies": {
    "material-design-icons": "^3.0.1",
@@ -24,7 +24,6 @@
    "babel-eslint": "^10.1.0",
    "css-loader": "^3.6.0",
    "eslint": "^6.8.0",
    "eslint-config-prettier": "^6.15.0",
    "eslint-plugin-prettier": "^3.1.4",
    "eslint-plugin-vue": "^6.2.2",
    "less": "^3.12.2",
@@ -34,7 +33,6 @@
    "uikit": "^3.5.9",
    "vue": "^2.6.12",
    "vue-friendly-iframe": "^0.17.0",
    "vue-plugin-load-script": "^1.3.2",
    "vue-template-compiler": "^2.6.12",
    "vue-tour": "^1.5.0",
    "vuejs-paginate": "^2.1.0",
+0 −18
Original line number Diff line number Diff line
// Theming specific to the electron app

.menubar-menu-container {
    box-shadow: 0.5px 1px 4px 0px rgba(0, 0, 0, 0.3) !important;
}

.menubar-menu-container>* {
    box-shadow: none !important;
}

.menubar-menu-container .action-menu-item,
.menubar-menu-container .action-label {
    cursor: default
}

.menubar-menu-container a:hover {
    text-decoration: none;
}
 No newline at end of file
+0 −3
Original line number Diff line number Diff line
@@ -4,9 +4,6 @@
// Highlight.js
@import "./highlight.less";

// Electron app theming
@import "./app.less";

// Custom OpenFlexure theming

//
Loading