mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 05:18:26 -04:00
417 B
417 B
import/no-self-import
Forbid a module from importing itself. This can sometimes happen during refactoring.
Rule Details
Fail
// foo.js
import foo from './foo';
const foo = require('./foo');
// index.js
import index from '.';
const index = require('.');
Pass
// foo.js
import bar from './bar';
const bar = require('./bar');