UNPKG
@thewtex/vtk.js-esm
Version:
latest (18.4.2-77b22c7239.1)
18.4.2-77b22c7239.1
18.4.2-77b22c7239
Visualization Toolkit for the Web
github.com/kitware/vtk-js
kitware/vtk-js
@thewtex/vtk.js-esm
/
Utilities
/
config
/
rules-linter.js
14 lines
(11 loc)
•
268 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const
path =
require
(
'path'
);
const
eslintrcPath = path.
join
(__dirname,
'../../.eslintrc.js'
);
module
.
exports
= [ {
test
:
/\.js$/
,
loader
:
'eslint-loader'
,
exclude
:
/node_modules/
,
enforce
:
'pre'
,
options
: {
configFile
: eslintrcPath }, }, ];