feat: Add the update design for the button component (#10257)

Co-authored-by: Pranav <pranavrajs@gmail.com>
This commit is contained in:
Sivin Varghese
2024-10-12 03:41:16 +05:30
committed by GitHub
parent 01cc46b318
commit 16c6ef0e11
3 changed files with 269 additions and 6 deletions

View File

@@ -12,6 +12,19 @@ module.exports = {
'vitest-globals/env': true,
},
},
{
files: ['**/*.story.vue'],
rules: {
'vue/no-undef-components': [
'error',
{
ignorePatterns: ['Variant', 'Story'],
},
],
// Story files can have static strings, it doesn't need to handle i18n always.
'vue/no-bare-strings-in-template': 'off',
},
},
],
plugins: ['html', 'prettier'],
parserOptions: {
@@ -223,11 +236,5 @@ module.exports = {
globals: {
bus: true,
vi: true,
// beforeEach: true,
// afterEach: true,
// test: true,
// describe: true,
// it: true,
// expect: true,
},
};