Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@losant/eslint-config-losant
Advanced tools
ESLint config for all Losant projects.
npm install --save-dev @losant/eslint-config-losant
yarn add --dev @losant/eslint-config-losant
>=8.0.0
Browser
{
"eslintConfig": {
"extends": "@losant/eslint-config-losant/env/browser"
}
}
Node
{
"eslintConfig": {
"extends": "@losant/eslint-config-losant/env/node"
}
}
You should add an npm script to the package.json
of the project that specifies the eslint command. lint
is the barebones setup you'll need to then be able to do yarn run lint
. It's recommended that you add the other commands as well.
{
"scripts": {
"lint": "esw \"**/*.js\" src test",
"lint:fix": "ews --fix \"**/*.js\" src test",
"lint:watch": "esw --watch \"**/*.js\" src test",
"lint:staged": "lint-staged"
},
"lint-staged": {
"**/*.js": "esw"
}
}
The resulting combination of extended rules, overrides, and plugins are documented together with their specified options:
Pre-Push hooks can be easily configured with Husky to encourage linting across a project. Simply add a dev dependency for Husky, and add configuration.
npm install --save-dev husky
yarn add --dev husky
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
Husky can be used for other Git Hooks as well. Check out their documentation for more details.
If you others working in a shared repo have global local configurations for ESLint and/or Prettier, it may be desirable to configure ESlint & Prettier to operate without stepping on eachother's toes. This can be handled with some additional configuration.
npm install --save-dev eslint-config-prettier
yarn add --dev eslint-config-prettier
At the end of the project's list of ESLint configuration extends, add "prettier". This will tell ESLint not to worry about rules that Prettier deals with.
"extends": [
"@losant/eslint-config-losant/env/browser",
"plugin:import/react",
"prettier"
],
Configure to run after lint with lint-staged.
"lint-staged": {
"**/*.js": "esw --fix",
"*.{js,css,md}": "prettier --write"
},
FAQs
Common eslint config for Losant
The npm package @losant/eslint-config-losant receives a total of 265 weekly downloads. As such, @losant/eslint-config-losant popularity was classified as not popular.
We found that @losant/eslint-config-losant 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.