-
-
Notifications
You must be signed in to change notification settings - Fork 669
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove deprecated rules * Remove no longer needed `script-setup` test * Restore docs from removed rules * Mention in rule docs that they are removed * Add "Removed" section to rules list in docs * Use different emoji for removed rules * Remove no longer necessary warning block Co-authored-by: yosuke ota <[email protected]>
- Loading branch information
1 parent
2f96315
commit a0cf018
Showing
18 changed files
with
115 additions
and
1,742 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
'use strict' | ||
|
||
/** | ||
* @typedef {object} RemovedRule | ||
* @property {string} ruleName | ||
* @property {string[]} replacedBy | ||
* @property {string} deprecatedInVersion | ||
* @property {string} removedInVersion | ||
*/ | ||
|
||
/** @type {RemovedRule[]} */ | ||
module.exports = [ | ||
{ | ||
ruleName: 'experimental-script-setup-vars', | ||
replacedBy: [], | ||
deprecatedInVersion: 'v7.13.0', | ||
removedInVersion: 'v9.0.0' | ||
}, | ||
{ | ||
ruleName: 'name-property-casing', | ||
replacedBy: ['component-definition-name-casing'], | ||
deprecatedInVersion: 'v7.0.0', | ||
removedInVersion: 'v9.0.0' | ||
}, | ||
{ | ||
ruleName: 'no-confusing-v-for-v-if', | ||
replacedBy: ['no-use-v-if-with-v-for'], | ||
deprecatedInVersion: 'v5.0.0', | ||
removedInVersion: 'v9.0.0' | ||
}, | ||
{ | ||
ruleName: 'no-unregistered-components', | ||
replacedBy: ['no-undef-components'], | ||
deprecatedInVersion: 'v8.4.0', | ||
removedInVersion: 'v9.0.0' | ||
} | ||
] |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.