warning
import/extensionsEnforces consistency across file imports, and ensures extensions are never added.
Examples
❌ Incorrect
import MyComponent from '../../MyComponent/MyComponent.vue';
import MyPlugin from '../../plugins/MyPlugin.js';
✅ Correct
import MyComponent from '../../MyComponent/MyComponent';
import MyPlugin from '../../plugins/MyPlugin';