ESlint config for Vue 3 + TypeScript,NestJS.
pnpm add @noahyu/eslint-config-vue -D
pnpm add @noahyu/eslint-config-nest -D
# Or yarn add -D / npm install -D
pnpm add @noahyu/eslint-config-vue
// eslint.config.mjs
import noahyuConfig from '@noahyu/eslint-config-vue'
export default [
...noahyuConfig,
// anything from here will override noahyuConfig
{
rules: {
// ···
},
},
]
pnpm add @noahyu/eslint-config-nest
// eslint.config.mjs
import noahyuConfig from '@noahyu/eslint-config-nest'
export default [
...noahyuConfig,
// anything from here will override noahyuConfig
{
rules: {
// ···
},
},
]
Copyright (c) 2023-present, Noah Yu