Skip to content

Commit 8d4ce67

Browse files
Update lint files to use scoped @jsdevtools rules
1 parent 65793b2 commit 8d4ce67

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.eslintrc.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
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"

test/.eslintrc.yml

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

55
extends:
6-
- modular/test
6+
- "@jsdevtools/modular/test"

test/fixtures/polyfill.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 { host } = require("host-environment");
3+
const { host } = require("@jsdevtools/host-environment");
44

55
// Load the Babel Polyfills for old browsers.
66
// NOTE: It's important that we ONLY do this when needed,

test/specs/exports.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const commonJSExport = require("../../");
44
const { default: defaultExport, ono: namedExport, Ono } = require("../../");
55
const { expect } = require("chai");
6-
const { host } = require("host-environment");
6+
const { host } = require("@jsdevtools/host-environment");
77

88
describe("package exports", () => {
99

test/utils/host.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 { host } = require("host-environment");
3+
const { host } = require("@jsdevtools/host-environment");
44
const sampleError = getSampleError();
55

66
module.exports = Object.assign({}, host, {

tslint.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# https://jstools.dev/tslint-modular/
44

55
extends:
6-
- tslint-modular/best-practices
7-
- tslint-modular/style
8-
- tslint-modular/node
9-
- tslint-modular/browser
6+
- "@jsdevtools/tslint-modular/best-practices"
7+
- "@jsdevtools/tslint-modular/style"
8+
- "@jsdevtools/tslint-modular/node"
9+
- "@jsdevtools/tslint-modular/browser"

0 commit comments

Comments
 (0)