We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 656727b commit dc6fc69Copy full SHA for dc6fc69
package.json
@@ -71,6 +71,12 @@
71
],
72
"rules": {
73
"arrow-body-style": "off",
74
+ "camelcase": [
75
+ "error",
76
+ {
77
+ "properties": "never"
78
+ }
79
+ ],
80
"capitalized-comments": "off",
81
"comma-dangle": [
82
"error",
test/test.mjs
@@ -506,7 +506,7 @@ describe('dependencyTree', () => {
506
mockfs({
507
[path.join(__dirname, '/es6')]: {
508
'module.entry.js': 'import * as module from "module.entry"',
509
- node_modules: { // eslint-disable-line camelcase
+ node_modules: {
510
'module.entry': {
511
'index.main.js': 'module.exports = function() {};',
512
'index.module.js': 'module.exports = function() {};',
0 commit comments