-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract formatting / lint changes from the Error Recovery PR, and add…
… prettier to ci / local tooling (#1500) * Run prettier with lint:fix * Update lockfile * Remove dotenv from lint:files, this busts the turbo cache and makes the linting job slow * Disable a lint on one additional file * Don't bust the cache for turbo based on if is logging warnings or not (NODE_OPTIONS) * Addition of lint:fix for ci was accidentally running when lint was running, doubling up on lint tasks
- Loading branch information
1 parent
8a84e2f
commit c66e4dd
Showing
247 changed files
with
1,512 additions
and
1,248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
node_modules/ | ||
|
||
# output directories | ||
dist/ | ||
ts-dist/ | ||
|
||
|
||
# We don't need prettier here | ||
*.md | ||
*.yaml | ||
*.yml | ||
guides/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,25 @@ | ||
{ | ||
"singleQuote": true, | ||
"trailingComma": "es5", | ||
"printWidth": 100 | ||
"printWidth": 100, | ||
"plugins": [], | ||
"overrides": [ | ||
{ | ||
"files": ["**/*.{js,ts,cjs,mjs,cts,mts,cts}"], | ||
"options": { | ||
"singleQuote": true, | ||
"trailingComma": "es5" | ||
} | ||
}, | ||
{ | ||
"files": ["*.json"], | ||
"options": { | ||
"singleQuote": false | ||
} | ||
}, | ||
{ | ||
"files": ["*.hbs"], | ||
"options": { | ||
"singleQuote": false | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"fsevents_latency": 0.02, | ||
"ignore_dirs": [ "tmp" ] | ||
"ignore_dirs": ["tmp"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<div class="container"> | ||
<table class="table table-hover table-striped test-data"><tbody> | ||
{{#each @items as |item|}}<Row @select={{this.select}} @item={{item}}/>{{/each}} | ||
</tbody></table> | ||
{{#each @items as |item|}}<Row @select={{this.select}} @item={{item}} />{{/each}} | ||
</tbody></table> | ||
<span className="preloadicon glyphicon glyphicon-remove" aria-hidden="true"></span> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
<tr class={{if @item.selected "danger"}}> | ||
<td class="col-md-1">{{@item.id}}</td> | ||
<td class="col-md-4"><a {{on "click" this.onSelect}}>{{@item.label}}</a></td> | ||
<td class="col-md-1"><a><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></a></td> | ||
<td class="col-md-1"><a><span | ||
class="glyphicon glyphicon-remove" | ||
aria-hidden="true" | ||
></span></a></td> | ||
<td class="col-md-6"></td> | ||
</tr> | ||
</tr> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
const express = require('express'); | ||
|
||
const app = express(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
const express = require('express'); | ||
|
||
const app = express(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 4 additions & 8 deletions
12
packages/@glimmer-workspace/benchmark-env/lib/benchmark/basic-component-manager.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/@glimmer-workspace/benchmark-env/lib/benchmark/create-env-delegate.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.