Skip to content

Commit f98e449

Browse files
Switched to scoped @jsdevtools packages
1 parent 2833325 commit f98e449

File tree

20 files changed

+50
-50
lines changed

20 files changed

+50
-50
lines changed

.editorconfig

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
# Editor config
2-
# http://EditorConfig.org
3-
4-
# This EditorConfig overrides any parent EditorConfigs
5-
root = true
6-
7-
# Default rules applied to all file types
8-
[*]
9-
10-
# No trailing spaces, newline at EOF
11-
charset = utf-8
12-
trim_trailing_whitespace = true
13-
insert_final_newline = true
14-
end_of_line = lf
15-
16-
# 2 space indentation
17-
indent_style = space
18-
indent_size = 2
19-
20-
# JavaScript-specific settings
21-
[*.{js,ts}]
22-
quote_type = double
23-
continuation_indent_size = 2
24-
curly_bracket_next_line = false
25-
indent_brace_style = BSD
26-
spaces_around_operators = true
27-
spaces_around_brackets = none
1+
# Editor config
2+
# http://EditorConfig.org
3+
4+
# This EditorConfig overrides any parent EditorConfigs
5+
root = true
6+
7+
# Default rules applied to all file types
8+
[*]
9+
10+
# No trailing spaces, newline at EOF
11+
charset = utf-8
12+
trim_trailing_whitespace = true
13+
insert_final_newline = true
14+
end_of_line = lf
15+
16+
# 2 space indentation
17+
indent_style = space
18+
indent_size = 2
19+
20+
# JavaScript-specific settings
21+
[*.{js,ts}]
22+
quote_type = double
23+
continuation_indent_size = 2
24+
curly_bracket_next_line = false
25+
indent_brace_style = BSD
26+
spaces_around_operators = true
27+
spaces_around_brackets = none

.eslintrc.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
root: true
66

77
extends:
8-
- modular/best-practices
9-
- modular/style
10-
- modular/browser
11-
- modular/node
12-
- modular/es6
8+
- "@jsdevtools/modular/best-practices"
9+
- "@jsdevtools/modular/style"
10+
- "@jsdevtools/modular/browser"
11+
- "@jsdevtools/modular/node"
12+
- "@jsdevtools/modular/es6"
1313

1414
rules:
1515
# This rule erroneously flags functions that use the `arguments` object

karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// https://jstools.dev/karma-config/
44

55
"use strict";
6-
const { karmaConfig } = require("karma-config");
6+
const { karmaConfig } = require("@jsdevtools/karma-config");
77
let exclude = [];
88

99
if (process.env.WINDOWS && process.env.CI) {

lib/dereference.js

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

33
const $Ref = require("./ref");
44
const Pointer = require("./pointer");
5-
const { ono } = require("ono");
5+
const { ono } = require("@jsdevtools/ono");
66
const url = require("./util/url");
77

88
module.exports = dereference;

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const bundle = require("./bundle");
99
const dereference = require("./dereference");
1010
const url = require("./util/url");
1111
const maybe = require("call-me-maybe");
12-
const { ono } = require("ono");
12+
const { ono } = require("@jsdevtools/ono");
1313

1414
module.exports = $RefParser;
1515
module.exports.YAML = require("./util/yaml");

lib/parse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use strict";
22

3-
const { ono } = require("ono");
3+
const { ono } = require("@jsdevtools/ono");
44
const url = require("./util/url");
55
const plugins = require("./util/plugins");
66

lib/pointer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = Pointer;
44

55
const $Ref = require("./ref");
66
const url = require("./util/url");
7-
const { ono } = require("ono");
7+
const { ono } = require("@jsdevtools/ono");
88
const slashes = /\//g;
99
const tildes = /~/g;
1010
const escapedSlash = /~1/g;

lib/refs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use strict";
22

3-
const { ono } = require("ono");
3+
const { ono } = require("@jsdevtools/ono");
44
const $Ref = require("./ref");
55
const url = require("./util/url");
66

lib/resolvers/file.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use strict";
22
const fs = require("fs");
3-
const { ono } = require("ono");
3+
const { ono } = require("@jsdevtools/ono");
44
const url = require("../util/url");
55

66
module.exports = {

lib/resolvers/http.js

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

33
const http = require("http");
44
const https = require("https");
5-
const { ono } = require("ono");
5+
const { ono } = require("@jsdevtools/ono");
66
const url = require("../util/url");
77

88
module.exports = {

0 commit comments

Comments
 (0)