Skip to content

fix: nit typo #1683

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/configs/base.js
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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