We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e80d878 commit 02ac8baCopy full SHA for 02ac8ba
.eslintignore
@@ -2,7 +2,6 @@ lib/internal/v8_prof_polyfill.js
2
lib/punycode.js
3
test/addons/??_*
4
test/fixtures
5
-test/tmp*
6
tools/eslint
7
tools/icu
8
node_modules
test/common/index.js
@@ -38,7 +38,9 @@ const noop = () => {};
38
39
exports.fixturesDir = fixturesDir;
40
41
-exports.tmpDirName = 'tmp';
+// Using a `.` prefixed name, which is the convention for "hidden" on POSIX,
42
+// gets tools to ignore it by default or by simple rules, especially eslint.
43
+exports.tmpDirName = '.tmp';
44
// PORT should match the definition in test/testpy/__init__.py.
45
exports.PORT = +process.env.NODE_COMMON_PORT || 12346;
46
exports.isWindows = process.platform === 'win32';
0 commit comments