mirror of
https://github.com/rekryt/iplist.git
synced 2025-10-12 08:34:15 +03:00
25 lines
584 B
JavaScript
25 lines
584 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es2021: true,
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:nuxt/recommended',
|
|
'plugin:vue/vue3-recommended',
|
|
'prettier',
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
parser: '@typescript-eslint/parser',
|
|
sourceType: 'module',
|
|
},
|
|
plugins: ['@typescript-eslint'],
|
|
rules: {
|
|
'vue/html-indent': 'off',
|
|
'vue/html-self-closing': 'off',
|
|
'vue/multi-word-component-names': 'off',
|
|
},
|
|
};
|