Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

eslint-config-jlm

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-jlm

ESLint configuration for JavaScript, TypeScript, React & Vue projects, by Julio L. Muller

latest
Source
npmnpm
Version
0.8.0
Version published
Weekly downloads
12
-55.56%
Maintainers
1
Weekly downloads
 
Created
Source

ESlint Configuration Presets - by LacusSoft

NPM Latest Version Minimum ESlint version Downloads Count Last Update Date Project License

This package provides LacuSoft's base linting configurations for ESlint, in JavaScript projects environments.

$ npm install -D eslint eslint-config-any

Standard preset

For vanilla JavaScript projects:

// .eslintrc file
{
  "extends": [
    "lacussoft"
  ]
}

TypeScript preset

For TypeScript projects:

// .eslintrc file
{
  "extends": [
    "lacussoft", // optional
    "lacussoft/typescript"
  ]
}

React preset

For React projects using React and JSX syntax:

// .eslintrc file
{
  "extends": [
    "lacussoft",            // optional
    "lacussoft/typescript", // optional (if using TypeScript)
    "lacussoft/react"
  ]
}

React Native preset

For React projects using React Native (it extends all configuration from the react preset):

// .eslintrc file
{
  "extends": [
    "lacussoft",            // optional
    "lacussoft/typescript", // optional (if using TypeScript)
    "lacussoft/react-native"
  ]
}

Vue preset

For Vue 3 (default) projects:

// .eslintrc file
{
  "extends": [
    "lacussoft",            // optional
    "lacussoft/typescript", // optional (if using TypeScript)
    "lacussoft/vue"
  ]
}

...or if using Vue 2:

// .eslintrc file
{
  "extends": [
    "lacussoft",            // optional
    "lacussoft/typescript", // optional (if using TypeScript)
    "lacussoft/vue/v2"
  ]
}

Keywords

eslint

FAQs

Package last updated on 03 Apr 2025

Did you know?

Socket

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.

Install

Related posts