- Correct docs generation to always fetch its dependency - Don't try to close a handle that's already been closed by other methods - Allow the release script to actually be testable.
12 lines
209 B
JavaScript
12 lines
209 B
JavaScript
module.exports = {
|
|
"extends": "../.eslintrc.js",
|
|
"env": {
|
|
"browser": null,
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2019,
|
|
},
|
|
"rules": {
|
|
"no-process-env": "off",
|
|
},
|
|
};
|