Skip to content

Commit c736369

Browse files
authored
Merge pull request #822 from Kitware/patchpackage
Apply patch-package at build time instead of install time
2 parents 42c030b + f8bcdad commit c736369

File tree

4 files changed

+47
-533
lines changed

4 files changed

+47
-533
lines changed

.eslintrc.cjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,12 @@ module.exports = {
7777
'import/no-extraneous-dependencies': 'off',
7878
},
7979
},
80+
{
81+
files: ['src/**/*.{j,t}s?(x)', 'src/**/*.vue'],
82+
rules: {
83+
'import/no-extraneous-dependencies': 'off',
84+
},
85+
},
8086
{
8187
files: ['**/tests/pageobjects/**/*.ts'],
8288
rules: {

.github/workflows/checks.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,7 @@ jobs:
1616
- run: npm ci
1717
- name: Enforce code style
1818
run: npx prettier --config ./prettier.config.cjs --list-different "src/**/*.[jt]s" "tests/**/*.[jt]s" "src/**/*.vue"
19+
- name: Lint
20+
run: npm run lint
1921
- name: Tests
2022
run: npm test

0 commit comments

Comments
 (0)