@noe132/eslint-config
v0.0.1
Published
eslint config with typescript and react/vue
Downloads
1
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',
],
}