Skip to content

Commit

Permalink
Update to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
digikid committed Aug 27, 2022
1 parent 21fa9c0 commit 5e7d852
Show file tree
Hide file tree
Showing 10 changed files with 517 additions and 445 deletions.
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ dist
docs
public
index.html
vite.config.ts
27 changes: 15 additions & 12 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
{
"parser": "vue-eslint-parser",
"parserOptions": {
"project": "tsconfig.json",
"ecmaVersion": "latest",
"parser": "@typescript-eslint/parser"
},
"extends": [
"eslint:recommended",
"@vue/typescript/recommended",
"plugin:vue/vue3-recommended",
"airbnb-base",
"airbnb-typescript/base"
"airbnb-base"
],
"plugins": [
"@typescript-eslint"
],
"ignorePatterns": [
"*.config.*"
],
"env": {
"node": true,
"browser": true,
Expand All @@ -30,18 +27,24 @@
"typescript": {}
}
},
"ignorePatterns": [
"*.config.js"
],
"overrides": [{
"files": [
"*.ts",
"*.vue"
],
"parserOptions": {
"ecmaVersion": "latest",
"parser": "@typescript-eslint/parser",
"project": "tsconfig.json"
},
"extends": [
"airbnb-typescript/base"
],
"rules": {
"no-undef": "off"
"no-undef": "off"
}
}
}],
],
"rules": {
"import/prefer-default-export": "off"
}
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Release Notes

[1.1.0]: https://github.com/digikid/vite-vue-project/releases/tag/1.1.0

## [1.1.0] - 2022-08-27

### Updates

- All dependencies updated to their latest versions

### Bug Fixes

- Fixed ESLint parsing error caused incorrect js files linting
- Downgrading ESLint because their latest version causes an [error in IntelliJ IDE](https://youtrack.jetbrains.com/issue/WEB-57089/ESLint823-TypeError-thislibOptionsparse-is-not-a-function)

[1.0.3]: https://github.com/digikid/vite-vue-project/releases/tag/1.0.3

## [1.0.3] - 2022-07-30
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div align="center">
<img alt="Vite + Vue Project" src="https://github.com/digikid/vite-vue-project/raw/main/logo.svg" height="117" />
<h1>Vite + Vue Project</h1>
<p>Modern starter template for Vite using Vue and TypeScript</p>
<p>Modern starter template for Vite with Vue and TypeScript</p>
<p>
<b>English</b> | <a href="https://github.com/digikid/vite-vue-project/blob/main/README.ru-RU.md">Русский</a></p>
<img src="https://img.shields.io/github/release/digikid/vite-vue-project.svg?style=flat-square&logo=appveyor" alt="Release version">
Expand Down Expand Up @@ -76,7 +76,7 @@ By default, all path aliases declared in `tsconfig.json` file are imported into

## Browser Support

Only the latest versions of major browsers (e.g. Chrome, Firefox, Safari, Edge etc) are supported.
Only the latest versions of major browsers (e.g. Chrome, Firefox, Safari, Edge etc) are supported.

<img src="https://github.com/digikid/vite-vue-project/raw/main/public/images/chrome.svg" width="64" height="64" alt="Chrome"> <img src="https://github.com/digikid/vite-vue-project/raw/main/public/images/firefox.svg" width="64" height="64" alt="Firefox"> <img src="https://github.com/digikid/vite-vue-project/raw/main/public/images/edge.svg" width="64" height="64" alt="Edge"> <img src="https://github.com/digikid/vite-vue-project/raw/main/public/images/safari.svg" width="64" height="64" alt="Safari"> <img src="https://github.com/digikid/vite-vue-project/raw/main/public/images/opera.svg" width="64" height="64" alt="Opera">

Expand Down
2 changes: 1 addition & 1 deletion README.ru-RU.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div align="center">
<img alt="Vite + Vue Project" src="https://github.com/digikid/vite-vue-project/raw/main/logo.svg" height="117" />
<h1>Vite + Vue Project</h1>
<p>Стартовый шаблон для сборки приложения на Vue и TypeScript</p>
<p>Стартовый Vite шаблон для сборки приложения на Vue и TypeScript</p>
<p>
<a href="https://github.com/digikid/vite-vue-project/blob/main/README.md">English</a> | <b>Русский</b></p>
<img src="https://img.shields.io/github/release/digikid/vite-vue-project.svg?style=flat-square&logo=appveyor" alt="Release version">
Expand Down
Loading

0 comments on commit 5e7d852

Please sign in to comment.