Skip to content

Commit

Permalink
chore: nit typo fix (#1683)
Browse files Browse the repository at this point in the history
  • Loading branch information
foxxyz committed Oct 28, 2021
1 parent 63d0595 commit 166dfbf
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion lib/configs/base.js
@@ -1,7 +1,7 @@
/*
* IMPORTANT!
* This file has been automatically generated,
* in order to update it's content execute "npm run update"
* in order to update its content execute "npm run update"
*/
module.exports = {
parser: require.resolve('vue-eslint-parser'),
Expand Down
2 changes: 1 addition & 1 deletion lib/configs/essential.js
@@ -1,7 +1,7 @@
/*
* IMPORTANT!
* This file has been automatically generated,
* in order to update it's content execute "npm run update"
* in order to update its content execute "npm run update"
*/
module.exports = {
extends: require.resolve('./base'),
Expand Down
2 changes: 1 addition & 1 deletion lib/configs/no-layout-rules.js
@@ -1,7 +1,7 @@
/*
* IMPORTANT!
* This file has been automatically generated,
* in order to update it's content execute "npm run update"
* in order to update its content execute "npm run update"
*/
module.exports = {
rules: {
Expand Down
2 changes: 1 addition & 1 deletion lib/configs/recommended.js
@@ -1,7 +1,7 @@
/*
* IMPORTANT!
* This file has been automatically generated,
* in order to update it's content execute "npm run update"
* in order to update its content execute "npm run update"
*/
module.exports = {
extends: require.resolve('./strongly-recommended'),
Expand Down
2 changes: 1 addition & 1 deletion lib/configs/strongly-recommended.js
@@ -1,7 +1,7 @@
/*
* IMPORTANT!
* This file has been automatically generated,
* in order to update it's content execute "npm run update"
* in order to update its content execute "npm run update"
*/
module.exports = {
extends: require.resolve('./essential'),
Expand Down
2 changes: 1 addition & 1 deletion lib/configs/vue3-essential.js
@@ -1,7 +1,7 @@
/*
* IMPORTANT!
* This file has been automatically generated,
* in order to update it's content execute "npm run update"
* in order to update its content execute "npm run update"
*/
module.exports = {
extends: require.resolve('./base'),
Expand Down
2 changes: 1 addition & 1 deletion lib/configs/vue3-recommended.js
@@ -1,7 +1,7 @@
/*
* IMPORTANT!
* This file has been automatically generated,
* in order to update it's content execute "npm run update"
* in order to update its content execute "npm run update"
*/
module.exports = {
extends: require.resolve('./vue3-strongly-recommended'),
Expand Down
2 changes: 1 addition & 1 deletion lib/configs/vue3-strongly-recommended.js
@@ -1,7 +1,7 @@
/*
* IMPORTANT!
* This file has been automatically generated,
* in order to update it's content execute "npm run update"
* in order to update its content execute "npm run update"
*/
module.exports = {
extends: require.resolve('./vue3-essential'),
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js
@@ -1,7 +1,7 @@
/*
* IMPORTANT!
* This file has been automatically generated,
* in order to update it's content execute "npm run update"
* in order to update its content execute "npm run update"
*/
'use strict'

Expand Down
4 changes: 2 additions & 2 deletions tools/update-lib-configs.js
Expand Up @@ -44,7 +44,7 @@ function formatCategory(category) {
return `/*
* IMPORTANT!
* This file has been automatically generated,
* in order to update it's content execute "npm run update"
* in order to update its content execute "npm run update"
*/
module.exports = {
parser: require.resolve('vue-eslint-parser'),
Expand All @@ -66,7 +66,7 @@ module.exports = {
return `/*
* IMPORTANT!
* This file has been automatically generated,
* in order to update it's content execute "npm run update"
* in order to update its content execute "npm run update"
*/
module.exports = {
extends: require.resolve('./${extendsCategoryId}'),
Expand Down
2 changes: 1 addition & 1 deletion tools/update-lib-index.js
Expand Up @@ -20,7 +20,7 @@ const filePath = path.resolve(__dirname, '../lib/index.js')
const content = `/*
* IMPORTANT!
* This file has been automatically generated,
* in order to update it's content execute "npm run update"
* in order to update its content execute "npm run update"
*/
'use strict'
Expand Down
2 changes: 1 addition & 1 deletion tools/update-no-layout-rules-config.js
Expand Up @@ -28,7 +28,7 @@ function generateConfig(rules) {
return `/*
* IMPORTANT!
* This file has been automatically generated,
* in order to update it's content execute "npm run update"
* in order to update its content execute "npm run update"
*/
module.exports = {
rules: ${formatRules(rules)}
Expand Down

0 comments on commit 166dfbf

Please sign in to comment.