Skip to content

Commit e7e2488

Browse files
committed
review
1 parent 5b25823 commit e7e2488

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ module.exports = {
3434
overrides: [
3535
{
3636
files: ["src/**/*.ts", "test/**/*.ts"],
37-
extends: ["plugin:matrix-org/typescript", "prettier"],
37+
extends: ["plugin:matrix-org/typescript"],
3838
rules: {
3939
// TypeScript has its own version of this
4040
"babel/no-invalid-this": "off",

.github/workflows/build.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222

2323
- name: Check Linting Rules and Types
2424
run: yarn lint
25+
26+
- name: Check Formatting
27+
run: yarn prettier:check
2528

2629
- name: test
2730
run: yarn test --coverage

.prettierrc

Lines changed: 0 additions & 4 deletions
This file was deleted.

.prettierrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require("eslint-plugin-matrix-org/.prettierrc.js");

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"editor.formatOnSave": false
3+
}

0 commit comments

Comments
 (0)