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

@devoxa/eslint-config

Package Overview
Dependencies
Maintainers
0
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@devoxa/eslint-config

The shareable configuration for ESLint used in all Devoxa projects

  • 4.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

eslint-config

The shareable configuration for ESLint used in all Devoxa projects

Package Version Build Status

InstallationUsageExtendingContributorsLicense


Installation

yarn add --dev eslint @devoxa/eslint-config

The configuration also has a peer dependency on typescript@^3.9.2.

Usage

To enable the rules, add a eslint.config.js file to your project. See the ESLint configuration docs for more details.

const config = require('@devoxa/eslint-config')

module.exports = config({
  // (Recommended) Files (in gitignore syntax) that will be transformed into ignore configs
  ignoreFiles: ['.gitignore'],

  // (Optional) Additional configs that will be spread into the main config
  // See https://typescript-eslint.io/packages/typescript-eslint#config
  configs: [
    /* ... */
  ],
})

Since the ESLint configuration is for TypeScript projects it is also required that you have a tsconfig.json file configured.

It is also recommended to add the following script to your package.json for easy usage.

"lint": "eslint '{src,tests}/**/*.{ts,tsx}'"

Additionally, it is recommended to install the VS Code Extension to get in-editor warnings.

Extending

This configuration is not intended to be changed, but if you have a setup where modification is required, it is possible. To extend a configuration you can use the configs option as described above.

Contributors

Thanks goes to these wonderful people (emoji key):


David Reeß

💻 📖 ⚠️

This project follows the all-contributors specification. Contributions of any kind welcome!

License

MIT

FAQs

Package last updated on 05 Dec 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