sindresorhus/eslint-plugin-unicorn
GitHub で見るRule proposal: Prefer `URLSearchParams` over `node:querystring` module
Open
#1,701 opened on 2022年1月21日
help wantednew rule
説明
Description
The querystring module has been officially deprecated by Node.js for some time. The replacement recommended is URLSearchParams.
An autofix to convert common operations with the querystring module (ex. querystring.stringify) to their URLSearchParams equivalent would be useful as well.
Fail
import ... from 'querystring';
require('querystring');
Pass
// anything else