-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(storybook): storybook upgraded to v6.5.5 (#117)
* chore(storybook): storybook upgraded to v6.5.5 * chore(storybook): lit expression comments cleared in v6.5 Manual modification in storybook configuration is not needed anymore. For more information: storybookjs/storybook#18108 Co-authored-by: Murat Çorlu <[email protected]>
- Loading branch information
1 parent
51ac9d6
commit be02a68
Showing
5 changed files
with
2,980 additions
and
3,354 deletions.
There are no files selected for viewing
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,43 @@ | ||
module.exports = { | ||
root: true, | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
ecmaVersion: 2020, | ||
sourceType: 'module', | ||
}, | ||
extends: [ | ||
'prettier', | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/eslint-recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
], | ||
plugins: ['@typescript-eslint'], | ||
env: { | ||
browser: true, | ||
}, | ||
globals: { | ||
process: 'readonly', | ||
}, | ||
rules: { | ||
strict: ['error', 'never'], | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['rollup.config.js', 'web-test-runner.config.js'], | ||
env: { | ||
node: true, | ||
}, | ||
}, | ||
{ | ||
files: [ | ||
'*.test.ts', | ||
'**/custom_typings/*.ts', | ||
'packages/lit-ssr/src/test/integration/tests/**', | ||
'packages/lit-ssr/src/lib/util/parse5-utils.ts', | ||
], | ||
rules: { | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
}, | ||
}, | ||
], | ||
}; |
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
Oops, something went wrong.