
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
@borgar/eslint-config
Advanced tools
I have opinions on how my code should look. This is a capture of those.
Look at the example.js to get a feel for what the code looks like. The rules are a bit lax on space at times and depend on the programmer wanting to keep the code legible and clean (don't we all?).
Pull it into your package like this:
npm install --save-dev eslint @borgar/eslint-config
Then add an .eslintrc file:
{ extends: [ '@borgar/eslint-config' ] }
Or perhaps you are using a babel/webpack combo, like I frequently do:
{
parser: 'babel-eslint',
extends: [ '@borgar/eslint-config' ],
rules: {
"import/export": "error",
"import/no-unresolved": "error"
},
plugins: [
'import'
],
settings: {
'import/resolver': 'webpack'
}
}
This will additionally need any or all of the following modules:
npm install --save-dev babel-core babel-eslint babel-loader babel-preset-env eslint-import-resolver-webpack eslint-plugin-import webpack webpack-cli
It comes with settings for React development as well. You'll need the react rules plugin:
npm install --save-dev eslint-plugin-react
And a ref in your .eslintrc file:
{ extends: [ '@borgar/eslint-config', '@borgar/eslint-config/react' ] }
FAQs
I have opinions on how my code should look.
We found that @borgar/eslint-config 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.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.