mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-09 05:16:23 +10:00
13 lines
261 B
JavaScript
13 lines
261 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
'plugin:vue-libs/recommended',
|
|
'plugin:jest/recommended'
|
|
],
|
|
rules: {
|
|
indent: ['error', 2, { MemberExpression: 'off' }],
|
|
"no-undef": ["error"],
|
|
'operator-linebreak': ["error", "before"]
|
|
}
|
|
}
|