Remove recommended setting from lints, it doesn't appear to have any effect.
This commit is contained in:
parent
6e2528fa31
commit
b9b4ccea30
|
@ -25,10 +25,9 @@ module.exports = {
|
||||||
docs: {
|
docs: {
|
||||||
description:
|
description:
|
||||||
"disallow the use of 'test.com' in strings and replace it with 'example.com'",
|
"disallow the use of 'test.com' in strings and replace it with 'example.com'",
|
||||||
recommended: true,
|
|
||||||
},
|
},
|
||||||
schema: [], // no options
|
schema: [],
|
||||||
fixable: "code", // Indicates that this rule supports automatic fixing
|
fixable: "code",
|
||||||
},
|
},
|
||||||
create: function (context) {
|
create: function (context) {
|
||||||
return {
|
return {
|
||||||
|
@ -57,7 +56,6 @@ module.exports = {
|
||||||
docs: {
|
docs: {
|
||||||
description:
|
description:
|
||||||
"enforce using the example.com domain for generator.email calls",
|
"enforce using the example.com domain for generator.email calls",
|
||||||
recommended: true,
|
|
||||||
},
|
},
|
||||||
fixable: "code",
|
fixable: "code",
|
||||||
schema: [],
|
schema: [],
|
||||||
|
@ -92,7 +90,6 @@ module.exports = {
|
||||||
type: "suggestion",
|
type: "suggestion",
|
||||||
docs: {
|
docs: {
|
||||||
description: "reminds you to move .only from tests before committing.",
|
description: "reminds you to move .only from tests before committing.",
|
||||||
recommended: true,
|
|
||||||
},
|
},
|
||||||
schema: [],
|
schema: [],
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue