diff --git a/package.json b/package.json index 93728b0..69a7c82 100644 --- a/package.json +++ b/package.json @@ -71,6 +71,12 @@ ], "rules": { "arrow-body-style": "off", + "camelcase": [ + "error", + { + "properties": "never" + } + ], "capitalized-comments": "off", "comma-dangle": [ "error", diff --git a/test/test.mjs b/test/test.mjs index cda8397..d38cf33 100644 --- a/test/test.mjs +++ b/test/test.mjs @@ -506,7 +506,7 @@ describe('dependencyTree', () => { mockfs({ [path.join(__dirname, '/es6')]: { 'module.entry.js': 'import * as module from "module.entry"', - node_modules: { // eslint-disable-line camelcase + node_modules: { 'module.entry': { 'index.main.js': 'module.exports = function() {};', 'index.module.js': 'module.exports = function() {};',