Skip to content

Commit

Permalink
chore: merge release-v0.1.10 into main
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackwills committed May 6, 2024
2 parents a7c949d + 7a943b2 commit 82b0259
Show file tree
Hide file tree
Showing 12 changed files with 5,848 additions and 6,056 deletions.
1 change: 0 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"timonwong.shellcheck",
"redhat.vscode-yaml",
"vue.volar",
"vue.vscode-typescript-vue-plugin",
"yoavbls.pretty-ts-errors"
]
}
Expand Down
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",
},
};
11 changes: 5 additions & 6 deletions .github/release-body.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
### 2024-04-01
### 2024-05-06

### Chores
+ dependencies updated, [e872a321be50190c1e61045c391f73284743c84c], [7ec71551d3347fbadb2667595f8dc7bf1cf6eaa5]
+ dependencies updated, [be7071254356b885f347ac364350145d929c0e35]
+ .devcontainer dependencies updated, [1d6fbb4afd5f892f65b3702c23b71df91015f66f]

### Fixes
+ sort by methods not in computed, [95c7af62d0e57b369ec9cc4723d743b4bf3d6aff]

### Refactors
+ dead code removed, [818b0f3315dd3f0bc325dcbed757c01096a19cf0]
+ footer & snackbar margins, [9a6430660bd7835b65dfc0c178b1eef39e8f744d]
+ add host to vite.config.ts, [7de6797814819e3db6a0a47bc04a39734ca789f3]

see <a href='https://github.com/mrjackwills/flightbox_vue/blob/main/CHANGELOG.md'>CHANGELOG.md</a> for more details
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# <a href='https://github.com/mrjackwills/flightbox_vue/releases/tag/v0.1.10'>v0.1.10</a>
### 2024-05-06

### Chores
+ dependencies updated, [be707125](https://github.com/mrjackwills/flightbox_vue/commit/be7071254356b885f347ac364350145d929c0e35)
+ .devcontainer dependencies updated, [1d6fbb4a](https://github.com/mrjackwills/flightbox_vue/commit/1d6fbb4afd5f892f65b3702c23b71df91015f66f)

### Fixes
+ footer & snackbar margins, [9a643066](https://github.com/mrjackwills/flightbox_vue/commit/9a6430660bd7835b65dfc0c178b1eef39e8f744d)
+ add host to vite.config.ts, [7de67978](https://github.com/mrjackwills/flightbox_vue/commit/7de6797814819e3db6a0a47bc04a39734ca789f3)

# <a href='https://github.com/mrjackwills/flightbox_vue/releases/tag/v0.1.9'>v0.1.9</a>
### 2024-04-01

Expand Down
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 82b0259

Please sign in to comment.