-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: fix license header #237
Conversation
0567a75
to
0dac1b1
Compare
# FIXME: Remove after switching to playwright | ||
e2e/browser | ||
# e2e browser testApp has it's own separate eslint configuration: | ||
e2e/browser/testApp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@NSeydoux we should ideally find a way to not have a separate eslint configuration for the testApp, or maybe use a post-install
script to install the dependencies for the testApp such that linting won't fail at that boundary.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The post-install
script seems like a good idea. I'll see how it looks like locally.
// as the root directory for compilation (instead of /src), | ||
// meaning that files that would otherwise be included in /dist directly | ||
// (e.g. dist/index.d.ts) will then be built to /dist/src. | ||
"e2e", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did verify that the build output remained consistent after this change, though someone may wish to double check. The logic here is that as we never include e2e, we don't need to exclude it.
The previous license header applied here is not consistent with that from ts-template, so this fixes that, whilst also ensuring the e2e tests are covered by eslint, whilst still excluding the testapp which has it's own linting configuration.