
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
eslint-config-tamia
Advanced tools
This package provides Tâmia’s .eslintrc
as an extensible shared config. Based on eslint-config-airbnb.
Should be used with Prettier, has no own code style rules.
We export three ESLint configurations:
Base set of rules for JavaScript. Includes:
npm install --save-dev eslint eslint-config-tamia
eslint.config.mjs
:
import tamia from 'eslint-config-tamia';
export default [...tamia];
Lints ES6+ and React. Includes:
npm install --save-dev eslint eslint-config-tamia
eslint.config.mjs
:
import tamiaReact from 'eslint-config-tamia/react';
export default [...tamiaReact];
Lints TypeScript. Includes:
npm install --save-dev eslint eslint-config-tamia
eslint.config.mjs
:
import tamiaTypeScript from 'eslint-config-tamia/typescript';
export default [...tamiaTypeScript];
Lints TypeScript and React. Includes:
npm install --save-dev eslint eslint-config-tamia eslint-plugin-jsx-a11y
eslint.config.mjs
:
import tamiaTypeScriptReact from 'eslint-config-tamia/typescript-react';
import jsxAccessibility from 'eslint-plugin-jsx-a11y';
export default [
...tamiaTypeScriptReact,
jsxAccessibility.flatConfigs.strict
];
const
, not var
.===
and !==
over ==
and !=
.Example:
function eatFood(food) {
if (food.length === 0) {
return ['No food'];
}
return food.map(dish => `No ${dish.toLowerCase()}`);
}
const food = ['Pizza', 'Burger', 'Coffee'];
console.log(eatFood(food));
See ESlint config docs for more information.
FAQs
Tâmia ESLint config
The npm package eslint-config-tamia receives a total of 364 weekly downloads. As such, eslint-config-tamia popularity was classified as not popular.
We found that eslint-config-tamia demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.