Last active
November 13, 2024 19:14
-
-
Save aeadedoyin/4f34a52fc390f2fe28ac448db91c1de4 to your computer and use it in GitHub Desktop.
A fluent .eslint for your Vue2(Nuxt2) project without all the mess.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
root: true, | |
env: { | |
browser: true, | |
node: true | |
}, | |
extends: [ | |
'@nuxtjs', | |
'plugin:nuxt/recommended', | |
'eslint:recommended' // <- add this line | |
// 'plugin:prettier/recommended', <- remove this line | |
], | |
parserOptions: { | |
parser: 'babel-eslint' | |
}, | |
// add your custom rules here | |
rules: { | |
indent: 2, | |
'arrow-parens': 0, | |
'no-new': 0, | |
'no-unused-expressions': 0, | |
'vue/no-v-html': 0, | |
'space-before-function-paren': 0, | |
'no-console': 0, | |
'operator-linebreak': 0, | |
'sort-keys': [0, 'asc', { caseSensitive: true, natural: true, minKeys: 2 }], | |
'vue/attributes-order': [ | |
2, | |
{ | |
alphabetical: true | |
} | |
], | |
'vue/no-vue-html': 0 | |
}, | |
plugins: ['prettier'] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment