diff --git a/lib/rules/no-globals-in-created.js b/lib/rules/no-globals-in-created.js index 6c8e741..ac7b27e 100644 --- a/lib/rules/no-globals-in-created.js +++ b/lib/rules/no-globals-in-created.js @@ -16,10 +16,6 @@ module.exports = { description: 'disallow `window/document` in `created/beforeCreate`', category: 'ssr' }, - fixable: null, // or "code" or "whitespace" - schema: [ - // fill in your schema - ], messages: { noGlobals: 'Unexpected {{name}} in {{funcName}}.' } diff --git a/lib/rules/no-this-in-async-data.js b/lib/rules/no-this-in-async-data.js index c73322a..c10da29 100644 --- a/lib/rules/no-this-in-async-data.js +++ b/lib/rules/no-this-in-async-data.js @@ -16,10 +16,6 @@ module.exports = { description: 'disallow `this` in asyncData', category: 'base' }, - fixable: null, // or "code" or "whitespace" - schema: [ - // fill in your schema - ], messages: { noThis: 'Unexpected this in asyncData.' } diff --git a/lib/rules/no-this-in-fetch.js b/lib/rules/no-this-in-fetch.js index 27c1ac4..303460c 100644 --- a/lib/rules/no-this-in-fetch.js +++ b/lib/rules/no-this-in-fetch.js @@ -16,10 +16,6 @@ module.exports = { description: 'disallow `this` in fetch', category: 'base' }, - fixable: null, // or "code" or "whitespace" - schema: [ - // fill in your schema - ], messages: { noThis: 'Unexpected this in fetch.' }