Skip to content

Commit

Permalink
chore: dependencies updated
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackwills committed May 2, 2024
1 parent 7de6797 commit be70712
Show file tree
Hide file tree
Showing 4 changed files with 5,816 additions and 6,043 deletions.
9 changes: 4 additions & 5 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* eslint-env node */

module.exports = {
root: true,
extends: [
Expand All @@ -23,7 +24,7 @@ module.exports = {
'arrow-parens': [ 'error', 'always' ],
'comma-spacing': [ 'error', { before: false, after: true } ],
'generator-star-spacing': 'off',
indent: [ 'error', 'tab' ],
'indent': [ 'error', 'tab' ],
'key-spacing': [ 1, { beforeColon: false, afterColon: true } ],
'keyword-spacing': [ 'error', { before: true } ],
'max-len': [
Expand All @@ -32,7 +33,6 @@ module.exports = {
],
'no-await-in-loop': 1,
'no-console': [ 'error', { allow: [ 'warn', 'error' ] } ],
// 'no-console': 0,
'no-constructor-return': 1,
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-extra-parens': 1,
Expand All @@ -44,9 +44,9 @@ module.exports = {
'no-trailing-spaces': [ 'error', { skipBlankLines: true } ],
'no-unused-vars': 'off',
'object-curly-spacing': [ 'error', 'always' ],
quotes: [ 'error', 'single', { allowTemplateLiterals: true } ],
'quotes': [ 'error', 'single', { allowTemplateLiterals: true } ],
'require-atomic-updates': 1,
semi: [ 'error', 'always' ],
'semi': [ 'error', 'always' ],
'space-before-blocks': [
'error',
{ functions: 'always', keywords: 'always', classes: 'always' },
Expand All @@ -66,6 +66,5 @@ module.exports = {
'vue/html-quotes': [ 'error', 'single' ],
'vue/mustache-interpolation-spacing': [ 'error', 'always' ],
'vue/script-indent': [ 'error', 'tab' ],
// "vuetify/no-deprecated-classes": "error",
},
};
2 changes: 1 addition & 1 deletion components.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
export {}

/* prettier-ignore */
declare module 'vue' {
export interface GlobalComponents {
AircraftRow: typeof import('./src/components/Authenticated/AircraftRow.vue')['default']
Expand Down
Loading

0 comments on commit be70712

Please sign in to comment.