eslint-vue/index.js
Timo Hocker 71c898ae89
All checks were successful
continuous-integration/drone/push Build is passing
fall back to parent id match
2021-01-21 21:50:04 +01:00

32 lines
577 B
JavaScript

/*
* Copyright (C) Sapphirecode - All Rights Reserved
* This file is part of eslint-config-vue which is released under MIT.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, May 2020
*/
module.exports = {
globals: {},
parser: 'vue-eslint-parser',
extends: [
'@sapphirecode/eslint-config-es6',
'plugin:vue/recommended'
],
plugins: [
'eslint-plugin-vue'
],
parserOptions: {
sourceType: 'module',
parser: 'babel-eslint'
},
rules: {
'vue/prop-name-casing': ['error', 'snake_case']
}
}