Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-config-phanective

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-phanective

Personal ESLint configuration for Jumpei Ogawa (@phanect)

  • 2024.5.27
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9
increased by12.5%
Maintainers
1
Weekly downloads
 
Created
Source

eslint-config-phanective

CircleCI

ESLint config for my own projects.

Install

Set overrides in package.json first:

  "overrides": {
    "@typescript-eslint/eslint-plugin": "latest"
  }

Then install eslint and this package:

npm install -D eslint eslint-config-phanective

Usage

Create an .eslintrc.js like following on the project root:

const { join } = require("path");

module.exports = {
  extends: "phanective",
  root: true,

  env: {
    browser: true, // or: "node": true
  },
  // If your project is TypeScript-based, you need to specify the tsconfig.json location
  parserOptions: {
    project: join(__dirname, "./tsconfig.eslint.json"),
  },
  // Add `sourceType: "script"` if \*.js files should be treated as CommonJS.
  overrides: [{
    files: [ "*.js", "**/*.js" ],
    parserOptions: {
      sourceType: "script",
    },
  }],
};

Supported configs:

  • phanective
  • phanective/node
  • phanective/react
  • phanective/next
  • phanective/vue+js (Vue 3)
  • phanective/vue+ts (Vue 3)
  • phanective/nuxt+js (Nuxt 3)
  • phanective/nuxt+ts (Nuxt 3)
  • phanective/with-deps
    • Use this rules in addition to the above rules if the project depends on package.json's dependencies on production i.e. npm packages and backend Node.js app without bundling.

Test with realworld projects

  1. Generate npm package
$ cd /path/to/eslint-config-phanective
$ npm pack
  1. Install new package on a realworld project
$ cd /path/to/target/project
$ npm install ../eslint-config-phanective/eslint-config-phanective-2022.1.1.tgz
  1. Test
# $ cd /path/to/target/project
$ npm run lint

FAQs

Package last updated on 27 May 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc