Skip to content

Commit 166dfbf

Browse files
authored
chore: nit typo fix (#1683)
1 parent 63d0595 commit 166dfbf

12 files changed

+13
-13
lines changed

lib/configs/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* IMPORTANT!
33
* This file has been automatically generated,
4-
* in order to update it's content execute "npm run update"
4+
* in order to update its content execute "npm run update"
55
*/
66
module.exports = {
77
parser: require.resolve('vue-eslint-parser'),

lib/configs/essential.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* IMPORTANT!
33
* This file has been automatically generated,
4-
* in order to update it's content execute "npm run update"
4+
* in order to update its content execute "npm run update"
55
*/
66
module.exports = {
77
extends: require.resolve('./base'),

lib/configs/no-layout-rules.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* IMPORTANT!
33
* This file has been automatically generated,
4-
* in order to update it's content execute "npm run update"
4+
* in order to update its content execute "npm run update"
55
*/
66
module.exports = {
77
rules: {

lib/configs/recommended.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* IMPORTANT!
33
* This file has been automatically generated,
4-
* in order to update it's content execute "npm run update"
4+
* in order to update its content execute "npm run update"
55
*/
66
module.exports = {
77
extends: require.resolve('./strongly-recommended'),

lib/configs/strongly-recommended.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* IMPORTANT!
33
* This file has been automatically generated,
4-
* in order to update it's content execute "npm run update"
4+
* in order to update its content execute "npm run update"
55
*/
66
module.exports = {
77
extends: require.resolve('./essential'),

lib/configs/vue3-essential.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* IMPORTANT!
33
* This file has been automatically generated,
4-
* in order to update it's content execute "npm run update"
4+
* in order to update its content execute "npm run update"
55
*/
66
module.exports = {
77
extends: require.resolve('./base'),

lib/configs/vue3-recommended.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* IMPORTANT!
33
* This file has been automatically generated,
4-
* in order to update it's content execute "npm run update"
4+
* in order to update its content execute "npm run update"
55
*/
66
module.exports = {
77
extends: require.resolve('./vue3-strongly-recommended'),

lib/configs/vue3-strongly-recommended.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* IMPORTANT!
33
* This file has been automatically generated,
4-
* in order to update it's content execute "npm run update"
4+
* in order to update its content execute "npm run update"
55
*/
66
module.exports = {
77
extends: require.resolve('./vue3-essential'),

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* IMPORTANT!
33
* This file has been automatically generated,
4-
* in order to update it's content execute "npm run update"
4+
* in order to update its content execute "npm run update"
55
*/
66
'use strict'
77

tools/update-lib-configs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function formatCategory(category) {
4444
return `/*
4545
* IMPORTANT!
4646
* This file has been automatically generated,
47-
* in order to update it's content execute "npm run update"
47+
* in order to update its content execute "npm run update"
4848
*/
4949
module.exports = {
5050
parser: require.resolve('vue-eslint-parser'),
@@ -66,7 +66,7 @@ module.exports = {
6666
return `/*
6767
* IMPORTANT!
6868
* This file has been automatically generated,
69-
* in order to update it's content execute "npm run update"
69+
* in order to update its content execute "npm run update"
7070
*/
7171
module.exports = {
7272
extends: require.resolve('./${extendsCategoryId}'),

tools/update-lib-index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const filePath = path.resolve(__dirname, '../lib/index.js')
2020
const content = `/*
2121
* IMPORTANT!
2222
* This file has been automatically generated,
23-
* in order to update it's content execute "npm run update"
23+
* in order to update its content execute "npm run update"
2424
*/
2525
'use strict'
2626

tools/update-no-layout-rules-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function generateConfig(rules) {
2828
return `/*
2929
* IMPORTANT!
3030
* This file has been automatically generated,
31-
* in order to update it's content execute "npm run update"
31+
* in order to update its content execute "npm run update"
3232
*/
3333
module.exports = {
3434
rules: ${formatRules(rules)}

0 commit comments

Comments
 (0)