1. @domenic/eslint-config
Domenic Denicola's base ESLint config
@domenic/eslint-config
Package: @domenic/eslint-config
Created by: domenic
Last modified: Sun, 20 Nov 2022 07:10:38 GMT
Version: 3.0.0
License: Apache-2.0
Downloads: 3,081
Repository: https://github.com/domenic/eslint-config

Install

npm install @domenic/eslint-config
yarn add @domenic/eslint-config

Domenic's ESLint Config

This is my personal base ESLint config which matches the style I use on most projects. It's published to npm as @domenic/eslint-config.

Usage

After installing, use extends: "@domenic" in the top level of the ESLint config object, e.g.

 module.exports = {
  extends: "@domenic",
  rules: {
    // per-project rules here
  }
};

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin