
Product
Rust Support in Socket Is Now Generally Available
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.
@tloncorp/eslint-config
Advanced tools
These are our shared settings for ESLint and Prettier. This ESLint configuration lints and formats our code so it follows our shared style guide. It uses ESLint to lint and fix Typescript and Javascript, and Prettier to format our code nicely.
Install the package with:
npm install @tloncorp/eslint-config --save-dev
@tloncorp/eslint-config requires you to take care of it's peerDependencies. Install the correct version of each peerDependencies package, which are listed with the following command:
npx install-peerdeps --dev @tloncorp/eslint-config
Now add @tloncorp/eslint-config to your .eslintrc.js:
// .eslintrc.js
module.exports = {
extends: '@tloncorp/eslint-config',
// for typescript codebases, you'll also need to add the followings:
overrides: [
{
files: ['**/*.ts', '**/*.tsx'],
parserOptions: {
project: './tsconfig.json', // edit this path to point to your tsconfig.json
},
},
],
}
This is how you can use or extend the @tloncorp/eslint-config Prettier config in your app:
// .prettierrc.js
module.exports = require('@tloncorp/eslint-config/.prettierrc.js')
// or to override specific options
module.exports = {
...require('@tloncorp/eslint-config/.prettierrc.js'),
semi: true,
}
This package gets published to NPM: @tloncorp/eslint-config. You will need to be a member of @tloncorp on npm in order to publish changes. From here you can publish your changes with:
package.json, and merge your changes into mastermaster, run npm publishFAQs
Tlon's ESLint + Prettier configuration
We found that @tloncorp/eslint-config demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers 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.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.

Research
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.