mirror of
https://github.com/robonen/tools.git
synced 2026-03-20 02:44:45 +00:00
23 lines
406 B
Markdown
23 lines
406 B
Markdown
# node preset
|
|
|
|
## Purpose
|
|
|
|
Node.js-правила и окружение `env.node = true`.
|
|
|
|
## Key Rules
|
|
|
|
- `node/no-exports-assign`: запрещает перезапись `exports`.
|
|
- `node/no-new-require`: запрещает `new require(...)`.
|
|
|
|
## Examples
|
|
|
|
```ts
|
|
// ✅ Good
|
|
module.exports = { run };
|
|
const mod = require('./mod');
|
|
|
|
// ❌ Bad
|
|
exports = { run };
|
|
const bad = new require('./mod');
|
|
```
|