![Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility](https://cdn.sanity.io/images/cgdhsj6q/production/97774ea8c88cc8f4bed2766c31994ebc38116948-1664x1366.png?w=400&fit=max&auto=format)
Security News
Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
eslint-config-molindo
Advanced tools
Molindo ESLint config that implements our styleguide and helps to catch errors.
yarn add eslint eslint-config-molindo --dev
.eslintrc.js
:// This enables ESLint to use dependencies of this config
// (see https://github.com/eslint/eslint/issues/3458)
require('eslint-config-molindo/setupPlugins');
module.exports = {
// Add configs based on your needs
extends: [
'molindo/javascript', // Or `molindo/typescript`
'molindo/react', // Optional
'molindo/jest', // Optional
'molindo/cypress' // Optional
]
}
"extends": "eslint-config-molindo/tsconfig.json"
to your tsconfig.json
.Set the env
in .eslintrc
as necessary so ESLint doesn't report missing globals.
E.g.:
{
"browser": true,
"node": true,
"es6": true,
"jest": true
}
It's strongly recommended to use an eslint integration for your editor of choice (e. g. dbaeumer.vscode-eslint
for VSCode so you see warnings and errors while writing code. Also the setting to auto fix errors on save should be turned on, so purely stylistic errors such as the ones reported by prettier
are fixed automatically.
If your linter plugin checks your code as you type (before you save) it can be helpful to silence stylistic errors to reduce noise and let the formatting happen on save.
FAQs
Molindo ESLint config that implements our styleguide and helps to catch errors.
The npm package eslint-config-molindo receives a total of 451 weekly downloads. As such, eslint-config-molindo popularity was classified as not popular.
We found that eslint-config-molindo demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Security News
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
Security News
React's CRA deprecation announcement sparked community criticism over framework recommendations, leading to quick updates acknowledging build tools like Vite as valid alternatives.
Security News
Ransomware payment rates hit an all-time low in 2024 as law enforcement crackdowns, stronger defenses, and shifting policies make attacks riskier and less profitable.