Skip to content
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(deps): bump rfdc from 1.3.1 to 1.4.1 #591

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -202,7 +202,7 @@
"@types/triple-beam": "^1.3.5",
"fast-diff": "^1.3.0",
"path-is-inside": "^1.0.2",
"rfdc": "^1.3.1",
"rfdc": "^1.4.1",
"semver": "^7.6.0",
"serialize-error": "^8.1.0",
"triple-beam": "^1.4.1",

Unchanged files with check annotations Beta

expect(results).toEqual({ diagnostics: [] });
});
// TODO: Remove once fixed upstream

Check warning on line 66 in src/utils/stylelint/__tests__/stylelint-runner.ts

GitHub Actions / lint / Lint on Node.js lts/* and ubuntu-latest

Unexpected 'todo' comment: 'TODO: Remove once fixed upstream'
test('should upper-case drive letters on Windows (Stylelint bug #5594)', async () => {
expect.assertions(2);
trimTrailingWhitespace,
}: LSP.FormattingOptions): FormattingRules {
// NOTE: There is no equivalent rule for trimFinalNewlines, so it is not respected.
// TODO: Create respective rule upstream?

Check warning on line 21 in src/utils/stylelint/formatting-options-to-rules.ts

GitHub Actions / lint / Lint on Node.js lts/* and ubuntu-latest

Unexpected 'todo' comment: 'TODO: Create respective rule upstream?'
const rules: FormattingRules = {
indentation: [insertSpaces ? tabSize : 'tab'],
// Workaround for Stylelint treating paths as case-sensitive on Windows
// If the drive letter is lowercase, we need to convert it to uppercase
// See https://github.com/stylelint/stylelint/issues/5594
// TODO: Remove once fixed upstream

Check warning on line 73 in src/utils/stylelint/stylelint-runner.ts

GitHub Actions / lint / Lint on Node.js lts/* and ubuntu-latest

Unexpected 'todo' comment: 'TODO: Remove once fixed upstream'
const codeFilename =
os.platform() === 'win32'
? fsPath.replace(/^[a-z]:/, (match) => match.toUpperCase())
test('should be resolved with one diagnostic when the CSS is broken', async () => {
expect.assertions(1);
const runner = new StylelintRunner();
// TODO: Restore once postcss-markdown is PostCSS 8 compatible

Check warning on line 49 in test/integration/stylelint-vscode/test.ts

GitHub Actions / lint / Lint on Node.js lts/* and ubuntu-latest

Unexpected 'todo' comment: 'TODO: Restore once postcss-markdown is...'
// const result = await runner.lintDocument(
// createDocument(
// 'markdown.md',
test('should be resolved even if no configs are defined', async () => {
expect.assertions(1);
const runner = new StylelintRunner();
// TODO: Restore once postcss-html is PostCSS 8 compatible

Check warning on line 90 in test/integration/stylelint-vscode/test.ts

GitHub Actions / lint / Lint on Node.js lts/* and ubuntu-latest

Unexpected 'todo' comment: 'TODO: Restore once postcss-html is...'
// const result = await runner.lintDocument(createDocument(null, 'plaintext', '<style>a{}</style>'), {
// customSyntax: 'postcss-html',
// });
test('should check CSS syntax even if no rule is provided', async () => {
expect.assertions(1);
const runner = new StylelintRunner();
// TODO: Restore once postcss-html is PostCSS 8 compatible

Check warning on line 213 in test/integration/stylelint-vscode/test.ts

GitHub Actions / lint / Lint on Node.js lts/* and ubuntu-latest

Unexpected 'todo' comment: 'TODO: Restore once postcss-html is...'
// const result = await runner.lintDocument(createDocument('at.xsl', 'xsl', '<style>@</style>'), {
// customSyntax: 'postcss-html',
// });