Skip to content

Commit

Permalink
Prepares version 14.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
patric-eberle committed Nov 2, 2022
1 parent 66bbe59 commit 3b0c80f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 14.2
* (Change) Improves Vue 3 configuration by loosening some rules and removing '@vue/typescript'.

## 14.1.3
* (Change) Updates 'array-bracket-newline' to prevent strange line breaks during `--fix` on arrays.

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-valantic",
"version": "14.1.3",
"version": "14.2.0",
"description": "The default ESLint config of valantic.",
"main": "index.js",
"scripts": {
Expand Down
6 changes: 2 additions & 4 deletions vue3.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@ module.exports = {
extends: [
'./index.js',
'./rules/vue.js',
'./typescript.js',
'plugin:vue/vue3-recommended',
'@vue/typescript',
],
plugins: [
'vue',
],
rules: {
"vue/no-unsupported-features": ["error", {
version: ">= 3 < 4",
}],
'import/extensions': ['warn', 'always'],
}
};

0 comments on commit 3b0c80f

Please sign in to comment.