Skip to content

Commit 4e3330b

Browse files
committed
chore: change package.json
1 parent 693561b commit 4e3330b

File tree

9 files changed

+22
-14
lines changed

9 files changed

+22
-14
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,6 @@ dist
7777
# IDE
7878
.idea
7979

80-
*.lerna_backup
80+
*.lerna_backup
81+
82+
DS_Store

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"version": "0.0.9",
44
"private": true,
55
"packageManager": "[email protected]",
6-
"author": "Anthony Fu <[email protected]> (https://github.com/antfu/)",
6+
"author": "Chizuki<[email protected]> (https://github.com/chizukicn/)",
7+
"homepage": "https://github.com/chizukicn/eslint-config",
78
"license": "MIT",
89
"scripts": {
910
"lint": "eslint .",

packages/all/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "@curev/eslint-config",
33
"version": "0.0.9",
4-
"description": "Anthony's ESLint config",
5-
"author": "Anthony Fu <anthonyfu117@hotmail.com> (https://github.com/antfu/)",
4+
"description": "Chizuki's ESLint config",
5+
"author": "Chizuki<chizukicn@outlook.com> (https://github.com/chizukicn/)",
66
"license": "MIT",
7-
"homepage": "https://github.com/antfu/eslint-config",
7+
"homepage": "https://github.com/chizukicn/eslint-config",
88
"keywords": [
99
"eslint-config"
1010
],

packages/basic/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"name": "@curev/eslint-config-basic",
33
"version": "0.0.9",
44
"description": "",
5-
"author": "Anthony Fu <anthonyfu117@hotmail.com> (https://github.com/antfu/)",
5+
"author": "Chizuki<chizukicn@outlook.com> (https://github.com/chizukicn/)",
66
"license": "MIT",
7-
"homepage": "https://github.com/antfu/eslint-config",
7+
"homepage": "https://github.com/chizukicn/eslint-config",
88
"keywords": [
99
"eslint-config"
1010
],

packages/eslint-plugin-curev/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "eslint-plugin-curev",
33
"version": "0.0.9",
44
"license": "MIT",
5-
"homepage": "https://github.com/antfu/eslint-config",
5+
"author": "Chizuki<[email protected]> (https://github.com/chizukicn/)",
66
"main": "./dist/index.cjs",
77
"module": "./dist/index.mjs",
88
"types": "./dist/index.d.ts",

packages/react/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"name": "@curev/eslint-config-react",
33
"version": "0.0.9",
44
"description": "",
5-
"author": "Anthony Fu <anthonyfu117@hotmail.com> (https://github.com/antfu/)",
5+
"author": "Chizuki<chizukicn@outlook.com> (https://github.com/chizukicn/)",
66
"license": "MIT",
7-
"homepage": "https://github.com/antfu/eslint-config",
7+
"homepage": "https://github.com/chizukicn/eslint-config",
88
"keywords": [
99
"eslint-config"
1010
],

packages/typescript/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"name": "@curev/eslint-config-ts",
33
"version": "0.0.9",
44
"description": "",
5-
"author": "Anthony Fu <anthonyfu117@hotmail.com> (https://github.com/antfu/)",
5+
"author": "Chizuki<chizukicn@outlook.com> (https://github.com/chizukicn/)",
66
"license": "MIT",
7-
"homepage": "https://github.com/antfu/eslint-config",
7+
"homepage": "https://github.com/chizukicn/eslint-config",
88
"keywords": [
99
"eslint-config"
1010
],

packages/vue/index.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,10 @@ module.exports = {
109109
"vue/space-infix-ops": "error",
110110
"vue/space-unary-ops": ["error", { words: true, nonwords: false }],
111111
"vue/template-curly-spacing": "error",
112-
"vue/script-indent": ["error", 2, { baseIndent: 1, switchCase: 1 }]
112+
"vue/script-indent": ["error", 2, { baseIndent: 1, switchCase: 1 }],
113+
"vue/order-in-components": "warn",
114+
"vue/no-deprecated-v-bind-sync": "warn",
115+
"vue/component-name-in-template-casing": "warn",
116+
"vue/require-explicit-emits": "warn"
113117
}
114118
};

packages/vue/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"name": "@curev/eslint-config-vue",
33
"version": "0.0.9",
44
"description": "",
5-
"author": "Anthony Fu <[email protected]> (https://github.com/antfu/)",
5+
"author": "Chizuki<[email protected]> (https://github.com/chizukicn/)",
6+
"homepage": "https://github.com/chizukicn/eslint-config",
67
"license": "MIT",
78
"keywords": [
89
"eslint-config"

0 commit comments

Comments
 (0)