-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LITE-28705: Migrate component templates from Pug to plain HTML
- Added more strict ESLint rules for vue - Updated dependencies, major work on storybook migration
- Loading branch information
1 parent
8681507
commit 7b61f65
Showing
12 changed files
with
21,477 additions
and
33,564 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* eslint-env node */ | ||
module.exports = { | ||
root: true, | ||
ignorePatterns: ['*.config.js', '*.spec.js', 'tasks/*', 'dist/*'], | ||
extends: [ | ||
'plugin:vue/vue3-recommended', | ||
'eslint:recommended', | ||
'plugin:storybook/recommended', | ||
], | ||
|
||
plugins: ['vue'], | ||
|
||
env: { | ||
'vue/setup-compiler-macros': true, | ||
}, | ||
|
||
rules: { | ||
'vue/multi-word-component-names': 'off', | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.