0.0.1 • Published 3 years ago

@noe132/eslint-config v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

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 and react
// .eslintrc.js
module.exports = {
  'extends': [
    '@noe132/eslint-config/react',
  ],
}
// base and vue3
// .eslintrc.js
module.exports = {
  'extends': [
    '@noe132/eslint-config/vue3',
  ],
}