Socket
Book a DemoInstallSign in
Socket

@dsb-norge/eslint-config-dsb-vue3

Package Overview
Dependencies
Maintainers
7
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dsb-norge/eslint-config-dsb-vue3

ESLint standard config for Vue 3 (JavaScript) projects using Flat config

3.0.0
latest
Source
npmnpm
Version published
Maintainers
7
Created
Source

eslint-config-dsb-vue3

npm version GitHub license

Installation

This package provides a Flat-config ESLint setup for Vue 3 JavaScript projects. It layers Vue's recommended rules, accessibility rules, and DSB stylistic choices.

Peer dependencies (install in your project):

  • eslint >= 9
  • eslint-plugin-vue >= 10
  • eslint-plugin-vuejs-accessibility >= 2.4
  • @stylistic/eslint-plugin >= 5

Install:

npm i -D @dsb-norge/eslint-config-dsb-vue3 eslint eslint-plugin-vue eslint-plugin-vuejs-accessibility @stylistic/eslint-plugin

Usage (Flat config)

Create eslint.config.mjs in your project:

import dsbVue3 from '@dsb-norge/eslint-config-dsb-vue3'

export default [
  ...dsbVue3,
  // Optional: add your project-specific overrides here
]

Run:

npx eslint .

Notes

  • Targets Vue 3 SFCs and browser globals by default.
  • No TypeScript. For TS projects, use @dsb-norge/eslint-config-dsb-vue3-ts.
  • You can override any rule in your local eslint.config.mjs.

Assumptions

This ESLint configuration comes with some fundamental assumptions:

  • ESLint 9 and Flat config
  • Vue.js 3
  • Browser and/or Node environment
  • Vite (typical, but not required)
  • JavaScript (no TypeScript)

Despite these, you can freely override, extend, or unset rules in your own flat config.

Migrate from 2.x/3.x to 4.x (ESLint 9 + Flat config)

1) Package cleanup

Remove packages no longer needed by this baseline if they were previously installed in your project:

npm uninstall -D @rushstack/eslint-patch eslint-config-standard eslint-plugin-import eslint-plugin-n eslint-plugin-promise

Ensure you’re on ESLint 9 and compatible peers:

npm i -D eslint@latest eslint-plugin-vue@^10 eslint-plugin-vuejs-accessibility@^2.4 @stylistic/eslint-plugin@^5

2) package.json scripts

Update to the simple flat-config scripts:

{
  "scripts": {
    "lint": "eslint",
    "lint:fix": "eslint --fix"
  }
}

3) Configuration migration

Move from .eslintrc* to eslint.config.mjs and spread this config.

From (old):

// .eslintrc.js
module.exports = {
  root: true,
  extends: [
    '@dsb-norge/dsb-vue3'
  ]
}

To (new):

// eslint.config.mjs
import dsbVue3 from '@dsb-norge/eslint-config-dsb-vue3'

export default [
  ...dsbVue3,
  {
    // your project-specific overrides here
    rules: {
      // e.g. 'no-console': 'off'
    }
  }
]

4) Optional: keep import/node/promise rules

If your project relies on additional rule sets, add them explicitly with their Flat presets (see each plugin’s docs):

npm i -D eslint-plugin-import eslint-plugin-n eslint-plugin-promise
// eslint.config.mjs (excerpt)
import dsbVue3 from '@dsb-norge/eslint-config-dsb-vue3'
import pluginImport from 'eslint-plugin-import'
import pluginN from 'eslint-plugin-n'
import pluginPromise from 'eslint-plugin-promise'

export default [
  ...dsbVue3,
  // The exact flat preset keys may vary by version; consult plugin docs.
  // Examples:
  ...(pluginImport.flatConfigs?.recommended ?? []),
  ...(pluginN.configs?.['flat/recommended'] ?? []),
  ...(pluginPromise.configs?.['flat/recommended'] ?? []),
]

Cypress (optional)

Add Cypress rules to Cypress files only. Note the spread and scoping with files.

// eslint.config.mjs
import dsbVue3 from '@dsb-norge/eslint-config-dsb-vue3'
import pluginCypress from 'eslint-plugin-cypress/flat'

export default [
  ...dsbVue3,
  {
    name: 'Cypress',
    ...pluginCypress.configs.recommended,
    files: [
      '**/__tests__/*.{cy,spec}.{js,jsx}',
      'cypress/e2e/**/*.{cy,spec}.{js,jsx}',
      'cypress/support/**/*.{js,jsx}'
    ],
    rules: {
      // your Cypress-specific overrides here
    }
  }
]

Keywords

eslint

FAQs

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

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.