We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0caea6b commit ac48b72Copy full SHA for ac48b72
README.md
@@ -61,31 +61,31 @@ Or, with `npm`
61
npm install -D @nuxtjs/eslint-module
62
```
63
64
-2. Add `@nuxtjs/eslint-module` to the `modules` section of `nuxt.config.js`
+2. Add `@nuxtjs/eslint-module` to the `modules` section of `nuxt.config.ts`
65
66
```js
67
-export default {
+export default defineNuxtConfig({
68
modules: [
69
// Simple usage
70
'@nuxtjs/eslint-module',
71
72
// With options
73
['@nuxtjs/eslint-module', { /* module options */ }]
74
]
75
-}
+})
76
77
78
### Using top level options
79
80
81
82
83
'@nuxtjs/eslint-module'
84
],
85
eslint: {
86
/* module options */
87
}
88
89
90
91
## Options
0 commit comments