StewEucen / eslint-config

ESLint config for Kochlein.
MIT License
0 stars 0 forks source link

✅ Retake as ESLint Flat Config #514

Closed StewEucen closed 5 months ago

StewEucen commented 12 months ago

Overview

Format

export default [ customComfig, { files: [ '/*.js', '*/.cjs', ], rules: { 'no-unused-vars': 'error', semi: 'error', // <---------- 👀 override }, }, { files: [ '/*.js', ], rules: { 'no-undef': 'error', semi: 'warm', // <---------- 👀 override }, }, ]



## Reference

* [ESLintのconfigがどのように変わり得るか(flat configとは何か)](https://zenn.dev/makotot/articles/0d9184f3dde858)

## Tasks

- [ ] Replace empty rule as ESLint flat config
- [ ] Fulfill existing rules to ESLint flat config
StewEucen commented 5 months ago