Skip to content
Closed
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ repos:
# src/test/suite/fixtures/recorded/languages/ruby/changeCondition.yml
exclude: ^src/test/suite/fixtures/recorded/.*/[^/]*\.yml$
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v2.7.1"
rev: "v3.0.0-alpha.3"
hooks:
- id: prettier
- repo: https://github.com/ikamensh/flynt/
Expand All @@ -39,7 +39,7 @@ repos:
args: [--refactor, --py39-plus]
types_or: [python, markdown, rst]
- repo: https://github.com/wenkokke/talonfmt
rev: 1.8.0
rev: 1.8.1
hooks:
- id: talonfmt
args: ["--in-place", "--max-line-width=88"]
2 changes: 1 addition & 1 deletion cursorless-nx/apps/cheatsheet-local/src/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
Expand Down
4 changes: 2 additions & 2 deletions cursorless-nx/apps/cheatsheet-local/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import * as ReactDOM from 'react-dom/client';
import App from './app/app';

const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
document.getElementById('root') as HTMLElement,
);
root.render(
<StrictMode>
<App />
</StrictMode>
</StrictMode>,
);
2 changes: 1 addition & 1 deletion cursorless-nx/apps/cursorless-org/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ module.exports = {
content: [
join(
__dirname,
'{src,pages,components}/**/*!(*.stories|*.spec).{ts,tsx,html}'
'{src,pages,components}/**/*!(*.stories|*.spec).{ts,tsx,html}',
),
...createGlobPatternsForDependencies(__dirname),
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function CheatsheetListComponent({
const variations = section.items.flatMap((item) => item.variations);

variations.sort((form1, form2) =>
form1.spokenForm.localeCompare(form2.spokenForm)
form1.spokenForm.localeCompare(form2.spokenForm),
);

const borderClassName = isHighlighted
Expand Down