mirror of
https://github.com/lights0123/n-link.git
synced 2025-01-11 02:25:27 +00:00
21 lines
378 B
JavaScript
21 lines
378 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
es2020: true,
|
||
|
browser: true,
|
||
|
node: true,
|
||
|
},
|
||
|
extends: [
|
||
|
'@nuxtjs/eslint-config-typescript',
|
||
|
'prettier',
|
||
|
'prettier/vue',
|
||
|
'plugin:prettier/recommended',
|
||
|
'plugin:nuxt/recommended',
|
||
|
],
|
||
|
plugins: ['prettier'],
|
||
|
// add your custom rules here
|
||
|
rules: {
|
||
|
'import/no-webpack-loader-syntax': 0,
|
||
|
},
|
||
|
};
|