Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
eslint-config-lagetse
Advanced tools
JavaScript linting rules for laget.se.
Extends eslint-config-airbnb
, which in turn makes use of eslint-plugin-react
and eslint-plugin-jsx-a11y
.
To view a full list of all the rules being applied, run:
npm run lint:ls
Install the config:
npm i -D eslint-config-lagetse
Add a .eslintrc
to the project root:
{
"extends": "lagetse"
}
Now go linting!
// package.json
{
"scripts": {
"lint:js": "eslint --ext .js --ext .jsx path/to/src/dir"
}
}
// Using gulp
import eslint from 'gulp-eslint';
gulp.task('lint:js', () => {
gulp.src(['path/to/**/*.js', 'path/to/**/*.jsx'])
.pipe(eslint());
});
https://medium.com/@dan_abramov/lint-like-it-s-2015-6987d44c5b48#.vrv9pvsul
FAQs
JavaScript linting rules for laget.se
The npm package eslint-config-lagetse receives a total of 0 weekly downloads. As such, eslint-config-lagetse popularity was classified as not popular.
We found that eslint-config-lagetse 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.