Socket
Book a DemoInstallSign in
Socket

@apeframework/eslint-config

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@apeframework/eslint-config

ESLint configuration for Ape Framework.

unpublished
latest
Source
npmnpm
Version
0.0.0-dev.1
Version published
Maintainers
1
Created
Source

Ape Framework ESLint configuration

ESLint configuration for Ape Framework.

NPM package: @apeframework/eslint-config

GitHub repository: ApeCommerce/ape-eslint

Installation

npm install @apeframework/eslint-config

Usage in a TypeScript project

Install required NPM packages:

npm install --save-dev \
  eslint \
  @typescript-eslint/parser \
  @typescript-eslint/eslint-plugin \
  @stylistic/eslint-plugin \
  @apeframework/eslint-config  

Create .eslintrc.json file:

{
  "root": true,
  "env": {
    "node": true
  },
  "parser": "@typescript-eslint/parser",
  "parserOptions": {
    "project": "tsconfig.json"
  },
  "plugins": [
    "@typescript-eslint",
    "@stylistic"
  ],
  "extends": [
    "eslint:recommended",
    "plugin:@typescript-eslint/recommended-type-checked",
    "@apeframework/stylistic"
  ]
}

Usage in a JavaScript project

Install required NPM packages:

npm install --save-dev \
  eslint \
  @stylistic/eslint-plugin \
  @apeframework/eslint-config  

Create .eslintrc.json file:

{
  "root": true,
  "env": {
    "node": true
  },
  "plugins": [
    "@stylistic"
  ],
  "extends": [
    "eslint:recommended",
    "@apeframework/stylistic"
  ]
}

Keywords

ape

FAQs

Package last updated on 18 Dec 2023

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