mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-11 00:05:36 +02:00
I have made documentation for Nestri, so everybody easy can find instructions to get started. It will also make it easier for people to help contribute to the documentation. The documentation is built with Nuxt3, [Docus ](https://github.com/nuxt-themes) which uses Nuxt Content.  
14 lines
255 B
JavaScript
14 lines
255 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ['@nuxt/eslint-config'],
|
|
ignorePatterns: [
|
|
'dist',
|
|
'node_modules',
|
|
'.output',
|
|
'.nuxt'
|
|
],
|
|
rules: {
|
|
'vue/max-attributes-per-line': 'off',
|
|
'vue/multi-word-component-names': 'off'
|
|
}
|
|
} |