Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
@lukemorales/eslint-config
Advanced tools
These are my settings for ESLint and Prettier
npx install-peerdeps --dev @lukemorales/eslint-config -Y
You can see in your package.json there are now a big list of devDependencies.
Add the following code to your package.json
:
"eslintConfig": {
"extends": [
"@lukemorales"
],
},
You can alternatively create a .eslintrc
file in the root of your project's directory (it should live where package.json does). Your .eslintrc
file should look like this:
{
"extends": [
"@lukemorales"
],
}
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
npm run lint
and fix all fixable issues with npm run lint:fix
. You probably want your editor to do this though.If you'd like to overwrite eslint or prettier settings, you can add the rules in your .eslintrc
file. The ESLint rules go directly under "rules"
while prettier options go under "prettier/prettier"
. Note that prettier rules overwrite anything in my config (trailing comma, and single quote), so you'll need to include those as well.
{
"extends": [
"@lukemorales"
],
"rules": {
"no-console": "off"
}
}
npx install-peerdeps --dev @lukemorales/eslint-config
package.json
and replace "extends": "react-app"
with "extends": "@lukemorales"
FAQs
ESLint and Prettier Config from Luke Morales
The npm package @lukemorales/eslint-config receives a total of 18 weekly downloads. As such, @lukemorales/eslint-config popularity was classified as not popular.
We found that @lukemorales/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
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.