mirror of
https://hub.gitmirror.com/https://github.com/ExamAware/ExamShowboard-Legacy.git
synced 2025-04-28 19:56:33 +00:00
18 lines
452 B
JavaScript
18 lines
452 B
JavaScript
/* eslint-env node */
|
|
require('@rushstack/eslint-patch/modern-module-resolution');
|
|
|
|
module.exports = {
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:vue/vue3-recommended',
|
|
'@electron-toolkit',
|
|
'@electron-toolkit/eslint-config-ts/eslint-recommended',
|
|
'@vue/eslint-config-typescript/recommended',
|
|
'@vue/eslint-config-prettier'
|
|
],
|
|
rules: {
|
|
'vue/require-default-prop': 'off',
|
|
'vue/multi-word-component-names': 'off'
|
|
}
|
|
};
|