-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* chore(deps): update all dependencies j:kit-282 * stabilize stabilize * patch * bump-cypress-timeout * stabilize ut * stabilize types * stabilize types * typo * timeout everywhere * stabilize eslint * bump cypress wait-on timeout everywhere * fix ghost dep * result-text do not err when not present in DOM, caused by #3053 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Louis Bompart <[email protected]>
- Loading branch information
1 parent
71f9c0c
commit 7548125
Showing
54 changed files
with
36,697 additions
and
46,455 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,94 @@ | ||
const {resolve} = require('path'); | ||
const gtsPkgJsonPath = require.resolve('gts/package.json'); | ||
const gtsPath = resolve(gtsPkgJsonPath, '..'); | ||
|
||
module.exports = { | ||
ignorePatterns: [ | ||
'node_modules', | ||
'stencil-generated', | ||
'dist', | ||
'www', | ||
'!.storybook', | ||
], | ||
env: { | ||
jest: true, | ||
es6: true, | ||
}, | ||
extends: ['plugin:prettier/recommended'], | ||
parserOptions: { | ||
ecmaVersion: 2020, | ||
sourceType: 'module', | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['**/package-lock.json'], | ||
parser: 'eslint-plugin-json-es', | ||
plugins: ['package-lock'], | ||
rules: { | ||
'package-lock/lock-file-version': [ | ||
'error', | ||
{ | ||
version: 3, | ||
}, | ||
], | ||
}, | ||
}, | ||
{ | ||
files: ['**/*.ts', '**/*.tsx', '**/*.js', '**/*.jsx', '**/*.mjs'], | ||
extends: ['plugin:@cspell/recommended'], | ||
rules: { | ||
'@cspell/spellchecker': ['error'], | ||
}, | ||
}, | ||
{ | ||
files: ['**/*.ts', '**/*.tsx'], | ||
parser: '@typescript-eslint/parser', | ||
plugins: ['@typescript-eslint'], | ||
extends: [gtsPath], | ||
parserOptions: { | ||
jsxPragma: 'h', | ||
}, | ||
rules: { | ||
'@typescript-eslint/no-unused-vars': [ | ||
'error', | ||
{ | ||
ignoreRestSiblings: true, | ||
argsIgnorePattern: '^_', | ||
varsIgnorePattern: '^_', | ||
}, | ||
], | ||
'@typescript-eslint/explicit-module-boundary-types': 'off', | ||
'@typescript-eslint/ban-types': 'off', | ||
'@typescript-eslint/no-empty-interface': [ | ||
'error', | ||
{ | ||
allowSingleExtends: true, | ||
}, | ||
], | ||
}, | ||
}, | ||
{ | ||
files: ['**/*.js', '**/*.jsx'], | ||
extends: ['eslint:recommended'], | ||
rules: { | ||
'no-unused-vars': [ | ||
'error', | ||
{ | ||
argsIgnorePattern: '^_', | ||
}, | ||
], | ||
}, | ||
env: { | ||
node: true, | ||
}, | ||
}, | ||
{ | ||
files: '**/*.mjs', | ||
parserOptions: { | ||
sourceType: 'module', | ||
ecmaVersion: 2022, | ||
}, | ||
}, | ||
], | ||
root: true, | ||
}; |
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
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
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
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
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
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
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
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
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
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
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.