1.0.7 • Published 11 months ago

@avil13/eslint-config v1.0.7

Weekly downloads
-
License
-
Repository
github
Last release
11 months ago

@avil13/eslint-config

Набор правил для eslint - для разработки

Установка

npm i -D @avil13/eslint-config

Подключаете в .eslintrc.cjs

/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution');

module.exports = {
  root: true,
  extends: [
     // ... тут оставляете ваши настройки

    '@avil13/eslint-config', // добавляете этот плагин
  ],
  parserOptions: {
    ecmaVersion: 'latest',
  },
  rules: {
    // Если что то надо переопределить
    'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
    'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
  },
};
1.0.7

11 months ago

1.0.6

11 months ago

1.0.5

11 months ago

1.0.4

12 months ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago