New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@adfinis/eslint-config

Package Overview
Dependencies
Maintainers
0
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@adfinis/eslint-config

Adfinis' ESlint config, following our coding guidelines

  • 3.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
729
increased by76.94%
Maintainers
0
Weekly downloads
 
Created
Source

@adfinis/eslint-config

This package contains our internally used eslint config.

Usage

To install this package, simply run

pnpm add -D @adfinis/eslint-config \
            eslint \
            eslint-config-prettier \
            eslint-plugin-prettier \
            eslint-plugin-import

Then add the following to your eslint.config.mjs

import adfinisConfig from "@adfinis/eslint-config";

export default [
  ...adfinisConfig,
  {
    // Custom rules for your project
  },
];

Ember

If you are using it in an ember app or addon you can use the config for ember:

pnpm add -D @adfinis/eslint-config \
            @babel/eslint-parser \
            @babel/plugin-proposal-decorators \
            eslint \
            eslint-config-prettier \
            eslint-plugin-prettier \
            eslint-plugin-import \
            eslint-plugin-ember \
            eslint-plugin-n \
            eslint-plugin-qunit \
            prettier

For an app replace your eslint.config.mjs with this:

import adfinisEmberAppConfig from "@adfinis/eslint-config/ember-app";

export default [
  ...adfinisEmberAppConfig,
  {
    // Custom rules for your project
  },
];

Or for an addon replace your eslint.config.mjs with this:

import adfinisEmberAddonConfig from "@adfinis/eslint-config/ember-addon";

export default [
  ...adfinisEmberAddonConfig,
  {
    // Custom rules for your project
  },
];

Keywords

FAQs

Package last updated on 12 Feb 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

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