Skip to content

Commit fde0c33

Browse files
committed
Point to new plugins repository
1 parent 30716fe commit fde0c33

File tree

8 files changed

+49
-50
lines changed

8 files changed

+49
-50
lines changed

.qlty/qlty.toml

+34-34
Original file line numberDiff line numberDiff line change
@@ -14,47 +14,47 @@
1414
config_version = "0"
1515

1616
exclude_patterns = [
17-
"*_min.*",
18-
"*-min.*",
19-
"*.min.*",
20-
"**/*.d.ts",
21-
"**/.yarn/**",
22-
"**/bower_components/**",
23-
"**/build/**",
24-
"**/cache/**",
25-
"**/config/**",
26-
"**/db/**",
27-
"**/deps/**",
28-
"**/dist/**",
29-
"**/extern/**",
30-
"**/external/**",
31-
"**/generated/**",
32-
"**/Godeps/**",
33-
"**/gradlew/**",
34-
"**/mvnw/**",
35-
"**/node_modules/**",
36-
"**/protos/**",
37-
"**/seed/**",
38-
"**/target/**",
39-
"**/testdata/**",
40-
"**/vendor/**",
41-
"**/assets/**",
17+
"*_min.*",
18+
"*-min.*",
19+
"*.min.*",
20+
"**/*.d.ts",
21+
"**/.yarn/**",
22+
"**/bower_components/**",
23+
"**/build/**",
24+
"**/cache/**",
25+
"**/config/**",
26+
"**/db/**",
27+
"**/deps/**",
28+
"**/dist/**",
29+
"**/extern/**",
30+
"**/external/**",
31+
"**/generated/**",
32+
"**/Godeps/**",
33+
"**/gradlew/**",
34+
"**/mvnw/**",
35+
"**/node_modules/**",
36+
"**/protos/**",
37+
"**/seed/**",
38+
"**/target/**",
39+
"**/testdata/**",
40+
"**/vendor/**",
41+
"**/assets/**",
4242
]
4343

4444
test_patterns = [
45-
"**/test/**",
46-
"**/spec/**",
47-
"**/*.test.*",
48-
"**/*.spec.*",
49-
"**/*_test.*",
50-
"**/*_spec.*",
51-
"**/test_*.*",
52-
"**/spec_*.*",
45+
"**/test/**",
46+
"**/spec/**",
47+
"**/*.test.*",
48+
"**/*.spec.*",
49+
"**/*_test.*",
50+
"**/*_spec.*",
51+
"**/test_*.*",
52+
"**/spec_*.*",
5353
]
5454

5555
[[source]]
5656
name = "default"
57-
repository = "https://github.com/qltyai/plugins.git"
57+
repository = "https://github.com/qltysh/qlty"
5858
tag = "v0.125.0"
5959

6060

plugins/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This is the official repository containing Qlty's integrations with linters, for
44

55
```toml
66
[sources.default]
7-
repository = "https://github.com/qltyai/plugins.git"
7+
repository = "https://github.com/qltysh/qlty"
88
tag = "v0.13.0"
99
```
1010

qlty-cli/src/initializer/sources.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use super::{Renderer, Settings};
22
use anyhow::{bail, Result};
33
use qlty_config::{config::Builder, sources::SourcesList};
44

5-
const DEFAULT_SOURCE_REPOSITORY: &str = "https://github.com/qltyai/plugins.git";
5+
const DEFAULT_SOURCE_REPOSITORY: &str = "https://github.com/qltysh/qlty";
66

77
#[derive(Debug, Clone, Default)]
88
pub struct SourceSpec {

qlty-cli/tests/cmd/check/network/basic.in/.qlty/qlty.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
config_version = "0"
22

33
[sources.default]
4-
repository = "https://github.com/qltyai/plugins.git"
4+
repository = "https://github.com/qltysh/qlty"
55
tag = "v0.102.0"
66

77
[[plugin]]

qlty-cli/tests/cmd/check/network/source.in/.qlty/qlty.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ config_version = "0"
22

33
[[source]]
44
name = "default"
5-
repository = "https://github.com/qltyai/plugins.git"
5+
repository = "https://github.com/qltysh/qlty"
66
tag = "v0.102.0"
77

88
[[plugin]]

qlty-cli/tests/cmd/fmt/basic.in/.qlty/qlty.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
config_version = "0"
22

33
[sources.default]
4-
repository = "https://github.com/qltyai/plugins.git"
4+
repository = "https://github.com/qltysh/qlty"
55
tag = "v0.13.0-pre"
66

77
[runtimes.enabled]

qlty-cli/tests/cmd/init/network/basic.stdout

+1-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ test_patterns = [
5454

5555
[[source]]
5656
name = "default"
57-
repository = "https://github.com/qltyai/plugins.git"
57+
repository = "https://github.com/qltysh/qlty"
5858
tag = "[..]"
5959

6060

@@ -83,4 +83,3 @@ version = "0.53.0"
8383

8484
[[plugin]]
8585
name = "trufflehog"
86-

qlty-config/src/sources/source_upgrade.rs

+9-9
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ mod test {
193193
fn test_update_config_tag_with_source() {
194194
let input = r#"
195195
[[source]]
196-
repository = "https://github.com/qltyai/plugins.git"
196+
repository = "https://github.com/qltysh/qlty"
197197
tag = "v1.0.0"
198198
"#;
199199

@@ -209,7 +209,7 @@ mod test {
209209

210210
let updated_contents = r#"
211211
[[source]]
212-
repository = "https://github.com/qltyai/plugins.git"
212+
repository = "https://github.com/qltysh/qlty"
213213
tag = "v1.2.3"
214214
"#;
215215
assert_eq!(result.unwrap().unwrap(), updated_contents);
@@ -219,7 +219,7 @@ mod test {
219219
fn test_update_config_tag_with_sources() {
220220
let input = r#"
221221
[sources.default]
222-
repository = "https://github.com/qltyai/plugins.git"
222+
repository = "https://github.com/qltysh/qlty"
223223
tag = "v0.101.0"
224224
"#;
225225

@@ -235,7 +235,7 @@ mod test {
235235

236236
let updated_contents = r#"
237237
[sources.default]
238-
repository = "https://github.com/qltyai/plugins.git"
238+
repository = "https://github.com/qltysh/qlty"
239239
tag = "v1.2.3"
240240
"#;
241241

@@ -367,7 +367,7 @@ mod test {
367367
fn test_update_config_tag_with_source_without_v() {
368368
let input = r#"
369369
[[source]]
370-
repository = "https://github.com/qltyai/plugins.git"
370+
repository = "https://github.com/qltysh/qlty"
371371
tag = "v1.0.0"
372372
"#;
373373

@@ -383,7 +383,7 @@ mod test {
383383

384384
let output = r#"
385385
[[source]]
386-
repository = "https://github.com/qltyai/plugins.git"
386+
repository = "https://github.com/qltysh/qlty"
387387
tag = "1.2.3"
388388
"#;
389389

@@ -394,7 +394,7 @@ mod test {
394394
fn test_update_config_tag_with_source_without_semver() {
395395
let input = r#"
396396
[[source]]
397-
repository = "https://github.com/qltyai/plugins.git"
397+
repository = "https://github.com/qltysh/qlty"
398398
tag = "v1.0.0"
399399
"#;
400400

@@ -414,7 +414,7 @@ mod test {
414414
fn test_update_config_tag_without_ref_tag() {
415415
let input = r#"
416416
[[source]]
417-
repository = "https://github.com/qltyai/plugins.git"
417+
repository = "https://github.com/qltysh/qlty"
418418
tag = "v1.0.0"
419419
"#;
420420

@@ -434,7 +434,7 @@ mod test {
434434
fn test_update_config_tag_with_ref_tag_non_semver() {
435435
let input = r#"
436436
[[source]]
437-
repository = "https://github.com/qltyai/plugins.git"
437+
repository = "https://github.com/qltysh/qlty"
438438
tag = "v1.0.0"
439439
"#;
440440

0 commit comments

Comments
 (0)