mirror of
https://github.com/FreeTubeApp/FreeTube
synced 2024-11-12 05:39:31 +01:00
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
module.exports = {
|
|
// https://eslint.org/docs/user-guide/configuring#using-configuration-files-1
|
|
root: true,
|
|
|
|
// https://eslint.org/docs/user-guide/configuring#specifying-environments
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
},
|
|
|
|
// https://eslint.org/docs/user-guide/configuring#specifying-parser
|
|
parser: 'vue-eslint-parser',
|
|
|
|
// https://vuejs.github.io/eslint-plugin-vue/user-guide/#faq
|
|
parserOptions: {
|
|
parser: 'babel-eslint',
|
|
ecmaVersion: 2018,
|
|
sourceType: 'module',
|
|
},
|
|
|
|
// https://eslint.org/docs/user-guide/configuring#extending-configuration-files
|
|
// order matters: from least important to most important in terms of overriding
|
|
// Prettier + Vue: https://medium.com/@gogl.alex/how-to-properly-set-up-eslint-with-prettier-for-vue-or-nuxt-in-vscode-e42532099a9c
|
|
extends: [
|
|
'prettier/vue',
|
|
'prettier',
|
|
'eslint:recommended',
|
|
'plugin:vue/recommended',
|
|
'standard',
|
|
],
|
|
|
|
// https://eslint.org/docs/user-guide/configuring#configuring-plugins
|
|
plugins: ['vue'],
|
|
|
|
rules: {
|
|
'space-before-function-paren': 0,
|
|
'comma-dangle': 0,
|
|
'vue/no-v-html': 'off',
|
|
'no-console': 0,
|
|
'no-unused-vars': 1,
|
|
'no-undef': 1,
|
|
'vue/no-template-key': 1,
|
|
},
|
|
}
|