Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/avil13/eslint-config

Strong eslint config for strong developers
https://github.com/avil13/eslint-config

Last synced: 19 days ago
JSON representation

Strong eslint config for strong developers

Awesome Lists containing this project

README

        

# @avil13/eslint-config

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

# Установка

```bash
npm i -D @avil13/eslint-config
```

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

```js

/* 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',
},
};

```