eslint-plugin-nebulas
Version:
smart contract lint rules
18 lines (11 loc) • 306 B
Markdown
# Report ESM import calls and export. (nebulas/no-esm)
Report `import xxx` and `export xxx` at the module scope.
## Rule Details
Examples of **incorrect** code for this rule:
```js
import xxx from 'crypto.js'
```
Examples of **correct** code for this rule:
```js
const xxx = require('crypto.js')
```