52 changed files with 86 additions and 99 deletions
@ -0,0 +1,18 @@ |
|||
import baseLintConfig from './index'; |
|||
|
|||
export default { |
|||
extends: [baseLintConfig], |
|||
plugins: ['simple-import-sort'], |
|||
rules: { |
|||
'simple-import-sort/imports': 'error', |
|||
'simple-import-sort/exports': 'error', |
|||
|
|||
'@typescript-eslint/ban-types': 'error', |
|||
'@typescript-eslint/ban-ts-ignore': 'error', |
|||
'@typescript-eslint/ban-ts-comment': 'error', |
|||
'@typescript-eslint/no-explicit-any': 'error', |
|||
|
|||
'vue/attributes-order': 'error', |
|||
'vue/require-default-prop': 'error', |
|||
}, |
|||
}; |
|||
@ -1,5 +1,4 @@ |
|||
import Icon from './src/Icon.vue'; |
|||
import SvgIcon from './src/SvgIcon.vue'; |
|||
import IconPicker from './src/IconPicker.vue'; |
|||
|
|||
export { Icon, IconPicker, SvgIcon }; |
|||
export { IconPicker, SvgIcon }; |
|||
|
|||
Loading…
Reference in new issue