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

@zendeskgarden/eslint-config

Package Overview
Dependencies
Maintainers
0
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zendeskgarden/eslint-config

Garden ESLint config

  • 45.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Garden ESLint Config npm version Build Status

:seedling: Garden is the design system by Zendesk

This package exposes a shareable ESLint config and a selection of associated plugins.

Installation

npm install eslint @zendeskgarden/eslint-config

Usage

Add a eslint.config.mjs to your project like this:

import config from '@zendeskgarden/eslint-config';

export default config;

Now Garden linting rules will apply to your project. See the ESLint Documentation for more details on using shareable configuration files.

Plugins

The following shared plugins are also available.

Jest

Install the following dependency in addition to those listed above.

npm install jest

Update the default configuration.

import config from '@zendeskgarden/eslint-config';
import jestPlugin from '@zendeskgarden/eslint-config/plugins/jest.js';

export default [...config, jestPlugin];

In some cases, it may be useful to limit the scope of the Jest rules via files.

export default [
  ...config,
  {
    files: ['**/*.spec.*'],
    ...jestPlugin
  }
];
React

The React plugin bundles rules for React, React Hooks, and JSX accessibility. Install the following dependency in addition to those listed above.

npm install react

Update the default configuration.

import config from '@zendeskgarden/eslint-config';
import reactPlugin from '@zendeskgarden/eslint-config/plugins/react.js';

export default [...config, reactPlugin];
TypeScript

Install the following dependency in addition to those listed above.

npm install typescript

Update the default configuration.

import config from '@zendeskgarden/eslint-config';
import typescriptPlugin from '@zendeskgarden/eslint-config/plugins/typescript.js';

export default [...config, typescriptPlugin];

For mixed JS and TS codebases, it may be useful to limit the scope of the TypeScript rules via files.

export default [
  ...config,
  {
    files: ['**/*.{ts, tsx}'],
    ...typescriptPlugin
  }
];

The typescript plugin covers rules for syntax checking. An additional typescript-type-checked plugin provides rules based on semantics. The typescript-type-checked plugin requires type information in order to execute. Set languageOptions.parserOptions.project to a valid TSConfig for the project. See typescript-eslint documentation for details.

export default [
  ...config,
  typescriptPlugin,
  typescriptTypeCheckedPlugin,
  {
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.json'],
        requireConfigFile: false
      }
    }
  }
];

Resources

Shout-outs for a mostly reasonable set of lint rules go to:

Contribution

Thanks for your interest in Garden! Community involvement helps make our design system fresh and tasty for everyone.

Got issues with what you find here? Please feel free to create an issue.

If you'd like to take a crack at making some changes, please follow our contributing documentation for details needed to submit a PR.

Community behavior is benevolently ruled by a code of conduct. Please participate accordingly.

License

Copyright 2024 Zendesk

Licensed under the Apache License, Version 2.0

Keywords

FAQs

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