Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 452 Bytes

readme.md

File metadata and controls

35 lines (30 loc) · 452 Bytes

eslint-config

presets for eslint with typescript and react/vue3

usage

// base config, js and typescript
// .eslintrc.js
module.exports = {
  'extends': [
    '@noe132/eslint-config-base',
  ],
}
// base and react
// .eslintrc.js
module.exports = {
  'extends': [
    '@noe132/eslint-config-react',
  ],
}
// base and vue3
// .eslintrc.js
module.exports = {
  'extends': [
    '@noe132/eslint-config-vue',
  ],
}