Skip to content

Commit c2f3b97

Browse files
authored
Whitespace cleanup (#405)
Whitespace
1 parent 4631bfe commit c2f3b97

13 files changed

Lines changed: 26 additions & 12 deletions

File tree

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
trim_trailing_whitespace = true
7+
insert_final_newline = true
8+
9+
[LICENSE]
10+
trim_trailing_whitespace = false
11+
insert_final_newline = false
12+
13+
[**/migrations/**/*.sql]
14+
insert_final_newline = false

.github/renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
"local>oxidecomputer/renovate-config//rust/autocreate",
66
"helpers:pinGitHubActionDigests"
77
]
8-
}
8+
}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
key.json
44

5-
.flox/
5+
.flox/

.licenserc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ header:
99
paths:
1010
- '**/*.rs'
1111

12-
comment: on-failure
12+
comment: on-failure

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,4 @@ an internal tool for Oxide, so we can't guarantee that PRs will be integrated.
112112
## License
113113

114114
Unless otherwise noted, all components are licensed under the
115-
[Mozilla Public License Version 2.0](LICENSE).
115+
[Mozilla Public License Version 2.0](LICENSE).
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
DROP TABLE oauth_client_redirect_uri;
22
DROP TABLE oauth_client_secret;
3-
DROP TABLE oauth_client;
3+
DROP TABLE oauth_client;

v-model/migrations/2024-01-23-181854_oauth_client/up.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ CREATE TABLE oauth_client_redirect_uri(
1818
redirect_uri VARCHAR NOT NULL,
1919
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
2020
deleted_at TIMESTAMPTZ
21-
);
21+
);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
ALTER TABLE api_user DROP COLUMN groups;
2-
DROP TABLE access_groups;
2+
DROP TABLE access_groups;

v-model/migrations/2024-01-23-181913_access_group/up.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ CREATE TABLE access_groups (
88
);
99
SELECT diesel_manage_updated_at('access_groups');
1010

11-
ALTER TABLE api_user ADD COLUMN groups UUID[] NOT NULL DEFAULT ARRAY[]::UUID[];
11+
ALTER TABLE api_user ADD COLUMN groups UUID[] NOT NULL DEFAULT ARRAY[]::UUID[];
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
DROP TABLE mapper;
1+
DROP TABLE mapper;

0 commit comments

Comments
 (0)