Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/avil13/eslint-config
- Owner: avil13
- Created: 2024-07-01T10:36:16.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-29T10:23:14.000Z (3 months ago)
- Last Synced: 2024-10-11T17:18:01.413Z (about 1 month ago)
- Language: JavaScript
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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',
},
};```