<!-- ❗Please don't ignore this template.❗ If you ignore it, we're just going to respond asking you to fill it out, which wastes everyone's time. The more relevant information you can include, the faster we can find the issue and fix it without asking you for more info. --> <!-- Before posting the issue, please confirm that the problem you're getting is not related with your code editor configuration. To make sure it's not, run: yarn eslint src/your-file.vue --> **Checklist** - [x] I have tried restarting my IDE and the issue persists. - [x] I have read the [FAQ](https://eslint.vuejs.org/user-guide/#faq) and my problem is not listed. <!-- If you do not read the FAQ and open an issue that is listed in the FAQ, we may silently close the issue. --> **Tell us about your environment** - **ESLint version:** 7.10.0 - **eslint-plugin-vue version:** 7.0.1 - **Node version:** 12.16.2 - **Operating System:** Mac OSX 10.15.7 **Please show your full configuration:** <!-- Paste content of your .eslintrc file --> ```json5 { 'no-multiple-empty-lines': ['error', { max: 2, maxBOF: 0, maxEOF: 0 }] } ``` **What did you do?** <!-- Please include the actual source code causing the issue. --> ```vue <script> import { computed } from 'vue' </script> ``` **What did you expect to happen?** To get linting errors for extra whitespace at the beginning and end of the script tag. **What actually happened?** <!-- Please include the actual, raw output from ESLint. If you are only looking at the results of your editor extension, also check the CLI results. --> No errors were reported **Repository to reproduce this issue** N/A