@noe132/eslint-config

eslint config with typescript and react/vue

Usage no npm install needed!

<script type="module">
  import noe132EslintConfig from 'https://cdn.skypack.dev/@noe132/eslint-config';
</script>

README

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',
  ],
}