
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
eslint-plugin-uniform-locale
Advanced tools
An ESLint plugin that enforces a uniform locale for spelling
eslint-plugin-uniform-locale
is an ESLint plugin that enforces consistent spelling based on the specified locale. This helps maintain a uniform style across your codebase by ensuring that words are spelled according to either US or GB English conventions.
To install the plugin, use either npm or yarn:
npm install eslint-plugin-uniform-locale --save-dev
or
yarn add eslint-plugin-uniform-locale --dev
Add uniform-locale
to the plugins
array in your ESLint configuration file, and configure the rule under rules
. You also need to specify the desired locale (either 'US' or 'GB') in the rule options.
{
"plugins": ["uniform-locale"],
"rules": {
"uniform-locale/consistent-spelling": ["error", "US"]
}
}
The plugin accepts a single configuration option to specify the locale. The available options are:
"US"
: Enforces US English spelling conventions."GB"
: Enforces GB English spelling conventions.{
"plugins": ["uniform-locale"],
"rules": {
"uniform-locale/consistent-spelling": ["error", "GB"]
}
}
consistent-spelling
This rule checks for spelling consistency based on the specified locale and suggests corrections if discrepancies are found.
"US"
: Enforce US English spelling."GB"
: Enforce GB English spelling.// ESLint configuration: ["error", "US"]
const color = 'blue';
const analyze = () => {};
// ESLint configuration: ["error", "US"]
const colour = 'blue'; // should be 'color'
const analyse = () => {}; // should be 'analyze'
// ESLint configuration: ["error", "GB"]
const colour = 'blue';
const analyse = () => {};
// ESLint configuration: ["error", "GB"]
const color = 'blue'; // should be 'colour'
const analyze = () => {}; // should be 'analyse'
Contributions are welcome! Please feel free to submit a pull request or open an issue if you encounter any problems or have suggestions for improvements.
FAQs
An ESLint plugin that enforces a uniform locale for spelling
We found that eslint-plugin-uniform-locale demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.