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

eslint-config-paazmaya

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-paazmaya

Shared ESLint configuration between my projects since it is possible

  • 9.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

eslint-config-paazmaya

Shared ESLint configuration between my projects since it is possible

Build Status Node.js v14 CI Code Smells

Usage

Install via npm command line tool, along with ESLint:

npm install --save-dev eslint eslint-config-paazmaya

Note that the minimum ESLint version supported is 7.15.0 due to the rule configuration, but the latest usually works best.

Change the .eslintrc.json to contain the configuration for the shared configuration:

{
  "extends": "paazmaya"
}

For further details see ESLint documentation for Shareable Configs.

For example, when @babel/eslint-parser parser would be needed:

{
  "extends": "paazmaya",
  "parser": "@babel/eslint-parser",
  "plugins": [
    "@babel"
  ]
}

The default configuration specifies global variable environments as:

env: {
  node: true,
  es6: true
}

The global variables themselves are defined at sindresorhus/globals.

Please note that the minimum supported version of Node.js is 14.15.0, which is the active Long Term Support (LTS) version.

Contributing

"A Beginner's Guide to Open Source: The Best Advice for Making your First Contribution"

Also there is a blog post about "45 Github Issues Dos and Don’ts".

Linting is done with ESLint and can be executed with npm test. There should be no errors appearing after any JavaScript file changes.

Version history

Changes happening across different versions and upcoming changes are tracked in the CHANGELOG.md file.

License

Copyright (c) Juga Paazmaya paazmaya@yahoo.com

Licensed under the MIT license.

Keywords

FAQs

Package last updated on 25 Nov 2022

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