Compare commits

...

3 Commits

Author SHA1 Message Date
Anthony Fu
52d7e70514 v0.6.2 2021-03-16 00:30:18 +08:00
Anthony Fu
67595932e4 fix: only disable no-unused-vars on vue file 2021-03-16 00:30:01 +08:00
Anthony Fu
31505698e4 fix: bring back eslint-plugin-html 2021-03-16 00:28:30 +08:00
16 changed files with 85 additions and 23 deletions

View File

@@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.6.2](https://github.com/antfu/eslint-config/compare/v0.6.1...v0.6.2) (2021-03-15)
### Bug Fixes
* bring back eslint-plugin-html ([3150569](https://github.com/antfu/eslint-config/commit/31505698e4738ac77e074d6cddf89fd16b0ed01f))
* only disable no-unused-vars on vue file ([6759593](https://github.com/antfu/eslint-config/commit/67595932e447824837d9776204c9b559cb06a185))
## [0.6.1](https://github.com/antfu/eslint-config/compare/v0.6.0...v0.6.1) (2021-03-14)
**Note:** Version bump only for package @antfu/eslint-config-monorepo

View File

@@ -2,5 +2,5 @@
"packages": [
"packages/*"
],
"version": "0.6.1"
"version": "0.6.2"
}

View File

@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.6.2](https://github.com/antfu/eslint-config/compare/v0.6.1...v0.6.2) (2021-03-15)
**Note:** Version bump only for package @antfu/eslint-config
## [0.6.1](https://github.com/antfu/eslint-config/compare/v0.6.0...v0.6.1) (2021-03-14)
**Note:** Version bump only for package @antfu/eslint-config

View File

@@ -1,6 +1,6 @@
{
"name": "@antfu/eslint-config",
"version": "0.6.1",
"version": "0.6.2",
"description": "",
"main": "index.js",
"keywords": [],
@@ -16,8 +16,8 @@
"access": "public"
},
"dependencies": {
"@antfu/eslint-config-react": "^0.6.1",
"@antfu/eslint-config-vue": "^0.6.1"
"@antfu/eslint-config-react": "^0.6.2",
"@antfu/eslint-config-vue": "^0.6.2"
},
"devDependencies": {
"eslint": "^7.22.0"

View File

@@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.6.2](https://github.com/antfu/eslint-config/compare/v0.6.1...v0.6.2) (2021-03-15)
### Bug Fixes
* bring back eslint-plugin-html ([3150569](https://github.com/antfu/eslint-config/commit/31505698e4738ac77e074d6cddf89fd16b0ed01f))
## [0.6.1](https://github.com/antfu/eslint-config/compare/v0.6.0...v0.6.1) (2021-03-14)
**Note:** Version bump only for package @antfu/eslint-config-basic

View File

@@ -12,7 +12,7 @@ module.exports = {
'plugin:jsonc/recommended-with-jsonc',
'plugin:yml/standard',
],
plugins: ['unicorn'],
plugins: ['html', 'unicorn'],
settings: {
'import/resolver': {
node: { extensions: ['.js', '.mjs', '.ts', '.d.ts'] },

View File

@@ -1,6 +1,6 @@
{
"name": "@antfu/eslint-config-basic",
"version": "0.6.1",
"version": "0.6.2",
"description": "",
"main": "index.js",
"keywords": [],
@@ -21,6 +21,7 @@
"dependencies": {
"eslint-config-standard": "^16.0.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsonc": "^1.2.1",
"eslint-plugin-node": "^11.1.0",

View File

@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.6.2](https://github.com/antfu/eslint-config/compare/v0.6.1...v0.6.2) (2021-03-15)
**Note:** Version bump only for package @antfu/eslint-config-react
## [0.6.1](https://github.com/antfu/eslint-config/compare/v0.6.0...v0.6.1) (2021-03-14)
**Note:** Version bump only for package @antfu/eslint-config-react

View File

@@ -1,6 +1,6 @@
{
"name": "@antfu/eslint-config-react",
"version": "0.6.1",
"version": "0.6.2",
"description": "",
"main": "index.js",
"keywords": [],
@@ -19,7 +19,7 @@
"access": "public"
},
"dependencies": {
"@antfu/eslint-config-ts": "^0.6.1",
"@antfu/eslint-config-ts": "^0.6.2",
"eslint-plugin-react": "^7.22.0"
},
"devDependencies": {

View File

@@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.6.2](https://github.com/antfu/eslint-config/compare/v0.6.1...v0.6.2) (2021-03-15)
### Bug Fixes
* only disable no-unused-vars on vue file ([6759593](https://github.com/antfu/eslint-config/commit/67595932e447824837d9776204c9b559cb06a185))
## [0.6.1](https://github.com/antfu/eslint-config/compare/v0.6.0...v0.6.1) (2021-03-14)
**Note:** Version bump only for package @antfu/eslint-config-ts

View File

@@ -12,7 +12,7 @@ module.exports = {
'@typescript-eslint/type-annotation-spacing': ['error', {}],
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': 'error',
'no-redeclare': 'off',
'@typescript-eslint/no-redeclare': 'error',

View File

@@ -1,6 +1,6 @@
{
"name": "@antfu/eslint-config-ts",
"version": "0.6.1",
"version": "0.6.2",
"description": "",
"main": "index.js",
"keywords": [],
@@ -17,7 +17,7 @@
"typescript": ">=3.9"
},
"dependencies": {
"@antfu/eslint-config-basic": "^0.6.1",
"@antfu/eslint-config-basic": "^0.6.2",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0"
},

View File

@@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.6.2](https://github.com/antfu/eslint-config/compare/v0.6.1...v0.6.2) (2021-03-15)
### Bug Fixes
* only disable no-unused-vars on vue file ([6759593](https://github.com/antfu/eslint-config/commit/67595932e447824837d9776204c9b559cb06a185))
## [0.6.1](https://github.com/antfu/eslint-config/compare/v0.6.0...v0.6.1) (2021-03-14)
**Note:** Version bump only for package @antfu/eslint-config-vue

View File

@@ -6,6 +6,10 @@ module.exports = {
parserOptions: {
parser: '@typescript-eslint/parser',
},
rules: {
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': 'off',
},
},
],
extends: [

View File

@@ -1,6 +1,6 @@
{
"name": "@antfu/eslint-config-vue",
"version": "0.6.1",
"version": "0.6.2",
"description": "",
"main": "index.js",
"keywords": [],
@@ -16,7 +16,7 @@
"access": "public"
},
"dependencies": {
"@antfu/eslint-config-ts": "^0.6.1",
"@antfu/eslint-config-ts": "^0.6.2",
"eslint-plugin-vue": "7.7.0"
},
"devDependencies": {

16
pnpm-lock.yaml generated
View File

@@ -2230,14 +2230,10 @@ packages:
dependencies:
domelementtype: 2.1.0
domhandler: 4.0.0
entities: 2.0.3
entities: 2.2.0
dev: false
resolution:
integrity: sha512-n6kZFH/KlCrqs/1GHMOd5i2fd/beQHuehKdWvNNffbGHTr/almdhuVvTVFb3V7fglz+nC50fFusu3lY33h12pA==
/domelementtype/2.0.1:
dev: false
resolution:
integrity: sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ==
/domelementtype/2.1.0:
dev: false
resolution:
@@ -2253,7 +2249,7 @@ packages:
/domutils/2.5.0:
dependencies:
dom-serializer: 1.2.0
domelementtype: 2.0.1
domelementtype: 2.1.0
domhandler: 4.0.0
dev: false
resolution:
@@ -2308,10 +2304,10 @@ packages:
node: '>=8.6'
resolution:
integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
/entities/2.0.3:
/entities/2.2.0:
dev: false
resolution:
integrity: sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==
integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==
/env-paths/2.2.0:
dev: true
engines:
@@ -3145,10 +3141,10 @@ packages:
integrity: sha512-fqhGdjk4av7mT9fU/B01dUtZ+WZSc/XEXMoLXDVZukiQRXxeHSSz3AqbeWRJHtF8EQYHlAgB1NSAHU0Cm7aqZA==
/htmlparser2/6.0.1:
dependencies:
domelementtype: 2.0.1
domelementtype: 2.1.0
domhandler: 4.0.0
domutils: 2.5.0
entities: 2.0.3
entities: 2.2.0
dev: false
resolution:
integrity: sha512-GDKPd+vk4jvSuvCbyuzx/unmXkk090Azec7LovXP8as1Hn8q9p3hbjmDGbUqqhknw0ajwit6LiiWqfiTUPMK7w==