-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathno-absolute-path.js
125 lines (117 loc) · 3.53 KB
/
no-absolute-path.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
import { test } from '../utils'
import { RuleTester } from 'eslint'
const ruleTester = new RuleTester()
, rule = require('rules/no-absolute-path')
const error = {
ruleId: 'no-absolute-path',
message: 'Do not import modules using an absolute path',
}
ruleTester.run('no-absolute-path', rule, {
valid: [
test({ code: 'import _ from "lodash"'}),
test({ code: 'import find from "lodash.find"'}),
test({ code: 'import foo from "./foo"'}),
test({ code: 'import foo from "../foo"'}),
test({ code: 'import foo from "foo"'}),
test({ code: 'import foo from "./"'}),
test({ code: 'import foo from "@scope/foo"'}),
test({ code: 'var _ = require("lodash")'}),
test({ code: 'var find = require("lodash.find")'}),
test({ code: 'var foo = require("./foo")'}),
test({ code: 'var foo = require("../foo")'}),
test({ code: 'var foo = require("foo")'}),
test({ code: 'var foo = require("./")'}),
test({ code: 'var foo = require("@scope/foo")'}),
// requireResolve option
test({
code: 'var foo = require.resolve("foo")',
options: [{ requireResolve: { commonjs: true }}],
}),
test({
code: 'var foo = require.resolve("./")',
options: [{ commonjs: true, requireResolve: true }],
}),
test({
code: 'var foo = require.resolve("@scope/foo")',
options: [{ requireResolve: { commonjs: true }}],
}),
test({ code: 'import events from "events"' }),
test({ code: 'import path from "path"' }),
test({ code: 'var events = require("events")' }),
test({ code: 'var path = require("path")' }),
test({ code: 'import path from "path";import events from "events"' }),
// still works if only `amd: true` is provided
test({
code: 'import path from "path"',
options: [{ amd: true }],
}),
// amd not enabled by default
test({ code: 'require(["/some/path"], function (f) { /* ... */ })' }),
test({ code: 'define(["/some/path"], function (f) { /* ... */ })' }),
test({
code: 'require(["./some/path"], function (f) { /* ... */ })',
options: [{ amd: true }],
}),
test({
code: 'define(["./some/path"], function (f) { /* ... */ })',
options: [{ amd: true }],
}),
],
invalid: [
test({
code: 'import f from "/foo"',
errors: [error],
}),
test({
code: 'import f from "/foo/path"',
errors: [error],
}),
test({
code: 'import f from "/some/path"',
errors: [error],
}),
test({
code: 'import f from "/some/path"',
options: [{ amd: true }],
errors: [error],
}),
test({
code: 'var f = require("/foo")',
errors: [error],
}),
test({
code: 'var f = require("/foo/path")',
errors: [error],
}),
test({
code: 'var f = require("/some/path")',
errors: [error],
}),
test({
code: 'var f = require("/some/path")',
options: [{ amd: true }],
errors: [error],
}),
test({
code: 'var f = require.resolve("/some/path")',
options: [{ commonjs: true, requireResolve: true }],
errors: [error],
}),
test({
code: 'var f = require.resolve("/some/path")',
options: [{ requireResolve: { commonjs: true } }],
errors: [error],
}),
// validate amd
test({
code: 'require(["/some/path"], function (f) { /* ... */ })',
options: [{ amd: true }],
errors: [error],
}),
test({
code: 'define(["/some/path"], function (f) { /* ... */ })',
options: [{ amd: true }],
errors: [error],
}),
],
})