Socket
Book a DemoInstallSign in
Socket

@shopware-ag/storefront-eslint-rules

Package Overview
Dependencies
Maintainers
10
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@shopware-ag/storefront-eslint-rules

Shopware Storefront ESLint rules

latest
Source
npmnpm
Version
1.0.4
Version published
Maintainers
10
Created
Source

ESLint Rules for Shopware Storefront

This package provides custom ESLint rules for Shopware Storefront projects. These rules help to ensure code quality, promote best practices, and assist in migrating from older code patterns to more modern approaches.

Installation

npm install @shopware-ag/storefront-eslint-rules --save-dev

Usage

Add the following to your ESLint configuration file (e.g., .eslintrc.js):

+import storefrontRules from '@shopware-ag/storefront-eslint-rules';

/** @type {import('eslint').Linter.Config[]} */
export default [
  {languageOptions: { globals: globals.browser }},
  pluginJs.configs.recommended,
  ...tseslint.configs.recommended,
+  storefrontRules,
  {
    rules: {
      '@typescript-eslint/no-unused-vars': 'warn',
      '@typescript-eslint/no-unused-expressions': 'warn',
      '@typescript-eslint/no-this-alias': 'warn',
      '@typescript-eslint/no-require-imports': 'off',
      'no-undef': 'off',
      'no-alert': 'error',
      'no-console': ['error', { allow: ['warn', 'error'] }],
    }
  }
];

Rules

  • migrate-plugin-manager: This rule flags imports from src/plugin-system/plugin.manager and suggests using window.PluginManager instead. It also flags imports from src/plugin-system/plugin.class and suggests using window.PluginBaseClass.
  • no-dom-access-helper: This rule identifies usages of the DomAccessHelper and suggests using native DOM methods instead.
  • no-http-client: This rule identifies usages of the HttpClient and suggests using the fetch API instead.
  • no-query-string: This rule identifies usages of the query-string library and suggests using URLSearchParams instead.

FAQs

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