Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
chore: linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lgenzelis committed Dec 6, 2024
1 parent be364e2 commit 7698be0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/lib/rules/no-undef-class.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ describe('no-undef-class', function () {
</div>
);
`,
errors: ["File not ./fileThatDoesNotExist.scss found"]
errors: ['File not ./fileThatDoesNotExist.scss found']
},
{
name: 'should detect if camel case properties are NOT defined when camelCase=true',
Expand Down
2 changes: 1 addition & 1 deletion test/lib/rules/no-unused-class.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ describe('no-unused-class', function () {
</div>
);
`,
errors: ["File not ./fileThatDoesNotExist.scss found"]
errors: ['File ./fileThatDoesNotExist.scss not found']
},
{
name: "file that can't be parsed should give an error",
Expand Down

0 comments on commit 7698be0

Please sign in to comment.