mirror of
https://gitee.com/WeBank/fes.js.git
synced 2024-12-14 17:41:01 +08:00
15 lines
289 B
JavaScript
15 lines
289 B
JavaScript
|
module.exports = {
|
||
|
extends: ['@webank/eslint-config-webank/vue.js'],
|
||
|
overrides: [
|
||
|
{
|
||
|
files: [
|
||
|
'**/__tests__/*.{j,t}s?(x)',
|
||
|
'**/tests/unit/**/*.spec.{j,t}s?(x)'
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
env: {
|
||
|
jest: true
|
||
|
}
|
||
|
};
|