Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklx committed Nov 26, 2024
1 parent b5b2302 commit 0ae74c2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"repository": "patricklx/eslint-plugin-ember-template-lint",
"scripts": {
"test": "jest",
"lint:js": "eslint --cache .",
"lint:js": "eslint --cache lib tests",
"lint:js:fix": "eslint --cache lib tests --fix",
"test:watch": "jest --watchAll"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion test-projects/gjs/src-2/placeholer-2.gjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


export const Placeholder = <template>
<label class="sr-only" for="initial-editor" class="asd">
<label class="sr-only" for="initial-editor">
Glimmer + Markdown Code Editor
</label>>
</template>;
2 changes: 1 addition & 1 deletion test-projects/gjs/src/placeholer.gjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


export const Placeholder = <template>
<label class="sr-only" for="initial-editor" class="asd">
<label class="sr-only" for="initial-editor">
Glimmer + Markdown Code Editor
</label>>
</template>;

0 comments on commit 0ae74c2

Please sign in to comment.