Commit 81f6e506 authored by Matěj Lang's avatar Matěj Lang
Browse files

New prettier settings.

parent b06d6b36
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
module.exports = {
  root: true,
  env: {
    node: true
    node: true,
  },
  extends: ['plugin:vue/essential', 'eslint:recommended', '@vue/prettier'],
  parserOptions: {
    parser: 'babel-eslint'
    parser: 'babel-eslint',
  },
  rules: {
    'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
    'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
    'no-unused-vars': 'warn'
  }
    'no-unused-vars': 'warn',
  },
}
+2 −1
Original line number Diff line number Diff line
module.exports = {
  singleQuote: true,
  semi: false,
};
  endOfLine: 'auto',
}
+9 −9
Original line number Diff line number Diff line
@@ -63,15 +63,15 @@ export default {
  props: {
    stickID: {
      type: String,
      required: true
    }
      required: true,
    },
  },
  components: {
    StickView,
    ChevronDownIcon,
    ChevronRightIcon,
    ChevronDoubleDownIcon,
    ChevronDoubleUpIcon
    ChevronDoubleUpIcon,
  },
  computed: {
    active() {
@@ -98,12 +98,12 @@ export default {
      set(value) {
        this.$store.dispatch('setStickStatusGUI', {
          statusGUI: value,
          stickID: this.stickID
          stickID: this.stickID,
        })
      }
    }
      },
  methods: {}
    },
  },
  methods: {},
}
</script>