mirror of https://github.com/nodejs/node.git
tools: add meta.fixable to fixable lint rules
This commit adds the meta.fixable property to all fixable ESLint rules. This is required as of ESLint 7.6.0. PR-URL: https://github.com/nodejs/node/pull/34589 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>pull/34589/head
parent
6e65f26b73
commit
ee0b44fd93
|
@ -12,6 +12,9 @@ const message =
|
|||
'(e.g. with `.then(common.mustCall())`)';
|
||||
|
||||
module.exports = {
|
||||
meta: {
|
||||
fixable: 'code'
|
||||
},
|
||||
create: function(context) {
|
||||
let hasCommonModule = false;
|
||||
return {
|
||||
|
|
|
@ -120,3 +120,7 @@ module.exports = function(context) {
|
|||
'Program:exit': () => reportIfMissingCheck()
|
||||
};
|
||||
};
|
||||
|
||||
module.exports.meta = {
|
||||
fixable: 'code'
|
||||
};
|
||||
|
|
|
@ -58,3 +58,7 @@ module.exports = function(context) {
|
|||
'Program:exit': () => reportIfMissing(context)
|
||||
};
|
||||
};
|
||||
|
||||
module.exports.meta = {
|
||||
fixable: 'code'
|
||||
};
|
||||
|
|
|
@ -59,3 +59,7 @@ module.exports = function(context) {
|
|||
'Program:exit': () => reportIfMissing(context)
|
||||
};
|
||||
};
|
||||
|
||||
module.exports.meta = {
|
||||
fixable: 'code'
|
||||
};
|
||||
|
|
|
@ -53,3 +53,7 @@ module.exports = function(context) {
|
|||
[astSelector]: (node) => checkNamesArgument(node)
|
||||
};
|
||||
};
|
||||
|
||||
module.exports.meta = {
|
||||
fixable: 'code'
|
||||
};
|
||||
|
|
|
@ -59,3 +59,7 @@ module.exports = (context) => {
|
|||
Program: (node) => reportIfError(node, context.getSourceCode())
|
||||
};
|
||||
};
|
||||
|
||||
module.exports.meta = {
|
||||
fixable: 'code'
|
||||
};
|
||||
|
|
|
@ -8,6 +8,9 @@
|
|||
const utils = require('./rules-utils.js');
|
||||
|
||||
module.exports = {
|
||||
meta: {
|
||||
fixable: 'code'
|
||||
},
|
||||
create(context) {
|
||||
const sourceCode = context.getSourceCode();
|
||||
let assertImported = false;
|
||||
|
|
|
@ -42,3 +42,7 @@ module.exports = function(context) {
|
|||
}
|
||||
};
|
||||
};
|
||||
|
||||
module.exports.meta = {
|
||||
fixable: 'code'
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue