Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update: Add option "ignoreGlobals" to camelcase rule (fixes #11716) #12782

Merged
merged 7 commits into from Jun 26, 2020
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
24 changes: 24 additions & 0 deletions docs/rules/camelcase.md
Expand Up @@ -16,6 +16,8 @@ This rule has an object option:
* `"ignoreDestructuring": true` does not check destructured identifiers (but still checks any use of those identifiers later in the code)
* `"ignoreImports": false` (default) enforces camelcase style for ES2015 imports
* `"ignoreImports": true` does not check ES2015 imports (but still checks any use of the imports later in the code except function arguments)
* `"ignoreGlobals": false` (default) enforces camelcase style for global variables
* `"ignoreGlobals": true` does not enforce camelcase style for global variables
* `allow` (`string[]`) list of properties to accept. Accept regex.

### properties: "always"
Expand Down Expand Up @@ -217,6 +219,28 @@ Examples of **correct** code for this rule with the `{ "ignoreImports": true }`
import { snake_cased } from 'mod';
```

### ignoreGlobals: false

Examples of **incorrect** code for this rule with the default `{ "ignoreGlobals": false }` option:

```js
/*eslint camelcase: ["error", {ignoreGlobals: false}]*/
/* global some_property */

const property = some_property;
mcdado marked this conversation as resolved.
Show resolved Hide resolved
```

### ignoreGlobals: true

Examples of **correct** code for this rule with the `{ "ignoreGlobals": true }` option:

```js
/*eslint camelcase: ["error", {ignoreGlobals: true}]*/
/* global some_property */

const property = some_property;
```

## allow

Examples of **correct** code for this rule with the `allow` option:
Expand Down
29 changes: 29 additions & 0 deletions lib/rules/camelcase.js
Expand Up @@ -32,6 +32,10 @@ module.exports = {
type: "boolean",
default: false
},
ignoreGlobals: {
type: "boolean",
default: false
},
properties: {
enum: ["always", "never"]
},
Expand Down Expand Up @@ -61,8 +65,11 @@ module.exports = {
let properties = options.properties || "";
const ignoreDestructuring = options.ignoreDestructuring;
const ignoreImports = options.ignoreImports;
const ignoreGlobals = options.ignoreGlobals;
const allow = options.allow || [];

let globalScope;

if (properties !== "always" && properties !== "never") {
properties = "always";
}
Expand Down Expand Up @@ -159,6 +166,19 @@ module.exports = {
return false;
}

/**
* Checks whether the given node represents a reference to a global variable that is not declared in the source code.
* These identifiers will be allowed, as it is assumed that user has no control over the names of external global variables.
* @param {ASTNode} node `Identifier` node to check.
* @returns {boolean} `true` if the node is a reference to a global variable.
*/
function isReferenceToGlobalVariable(node) {
const variable = globalScope.set.get(node.name);

return variable && variable.defs.length === 0 &&
variable.references.some(ref => ref.identifier === node);
}

/**
* Reports an AST node as a rule violation.
* @param {ASTNode} node The node to report.
Expand All @@ -174,6 +194,10 @@ module.exports = {

return {

Program() {
globalScope = context.getScope();
},

Identifier(node) {

/*
Expand All @@ -189,6 +213,11 @@ module.exports = {
return;
}

// Check if it's a global variable
if (ignoreGlobals && isReferenceToGlobalVariable(node)) {
mcdado marked this conversation as resolved.
Show resolved Hide resolved
return;
}

// MemberExpressions get special rules
if (node.parent.type === "MemberExpression") {

Expand Down
135 changes: 135 additions & 0 deletions tests/lib/rules/camelcase.js
Expand Up @@ -169,6 +169,104 @@ ruleTester.run("camelcase", rule, {
options: [{ ignoreImports: false }],
parserOptions: { ecmaVersion: 6, sourceType: "module" }
},
{
code: "var _camelCased = aGlobalVariable",
options: [{ ignoreGlobals: false }],
globals: { aGlobalVariable: false }
},
{
code: "var camelCased = _aGlobalVariable",
options: [{ ignoreGlobals: false }],
globals: { _aGlobalVariable: false }
},
{
code: "var camelCased = a_global_variable",
options: [{ ignoreGlobals: true }],
globals: { a_global_variable: false } // eslint-disable-line camelcase
},
{
code: "a_global_variable.foo()",
options: [{ ignoreGlobals: true }],
globals: { a_global_variable: false } // eslint-disable-line camelcase
},
{
code: "a_global_variable[undefined]",
options: [{ ignoreGlobals: true }],
globals: { a_global_variable: "readonly" } // eslint-disable-line camelcase
},
{
code: "var foo = a_global_variable.bar",
options: [{ ignoreGlobals: true }],
globals: { a_global_variable: "readonly" } // eslint-disable-line camelcase
},
{
code: "a_global_variable.foo = bar",
options: [{ ignoreGlobals: true }],
globals: { a_global_variable: "readonly" } // eslint-disable-line camelcase
},
{
code: "( { foo: a_global_variable.bar } = baz )",
options: [{ ignoreGlobals: true }],
parserOptions: { ecmaVersion: 6 },
globals: { a_global_variable: "readonly" } // eslint-disable-line camelcase
},
{
code: "a_global_variable = foo",
options: [{ ignoreGlobals: true }],
globals: { a_global_variable: "writable" } // eslint-disable-line camelcase
},
{
code: "a_global_variable = foo",
options: [{ ignoreGlobals: true }],
globals: { a_global_variable: "readonly" } // eslint-disable-line camelcase
},
{
code: "({ a_global_variable } = foo)",
options: [{ ignoreGlobals: true }],
parserOptions: { ecmaVersion: 6 },
globals: { a_global_variable: "writable" } // eslint-disable-line camelcase
},
{
code: "({ snake_cased: a_global_variable } = foo)",
options: [{ ignoreGlobals: true }],
parserOptions: { ecmaVersion: 6 },
globals: { a_global_variable: "writable" } // eslint-disable-line camelcase
},
{
code: "({ snake_cased: a_global_variable = foo } = bar)",
options: [{ ignoreGlobals: true }],
parserOptions: { ecmaVersion: 6 },
globals: { a_global_variable: "writable" } // eslint-disable-line camelcase
},
{
code: "[a_global_variable] = bar",
options: [{ ignoreGlobals: true }],
parserOptions: { ecmaVersion: 6 },
globals: { a_global_variable: "writable" } // eslint-disable-line camelcase
},
{
code: "[a_global_variable = foo] = bar",
options: [{ ignoreGlobals: true }],
parserOptions: { ecmaVersion: 6 },
globals: { a_global_variable: "writable" } // eslint-disable-line camelcase
},
{
code: "foo[a_global_variable] = bar",
options: [{ ignoreGlobals: true }],
globals: { a_global_variable: "readonly" } // eslint-disable-line camelcase
},
{
code: "var foo = { [a_global_variable]: bar }",
options: [{ ignoreGlobals: true }],
parserOptions: { ecmaVersion: 6 },
globals: { a_global_variable: "readonly" } // eslint-disable-line camelcase
},
{
code: "var { [a_global_variable]: foo } = bar",
options: [{ ignoreGlobals: true }],
parserOptions: { ecmaVersion: 6 },
globals: { a_global_variable: "readonly" } // eslint-disable-line camelcase
},
{
code: "function foo({ no_camelcased: camelCased }) {};",
parserOptions: { ecmaVersion: 6 }
Expand Down Expand Up @@ -652,6 +750,43 @@ ruleTester.run("camelcase", rule, {
}
]
},
{
code: "var camelCased = snake_cased",
options: [{ ignoreGlobals: false }],
globals: { snake_cased: false }, // eslint-disable-line camelcase
errors: [
{
messageId: "notCamelCase",
data: { name: "snake_cased" },
type: "Identifier"
}
]
},
{
code: "a_global_variable.foo()",
options: [{ ignoreGlobals: false }],
globals: { a_global_variable: false }, // eslint-disable-line camelcase
errors: [
{
messageId: "notCamelCase",
data: { name: "a_global_variable" },
type: "Identifier"
}
]
},
{
code: "a_global_variable[undefined]",
options: [{ ignoreGlobals: false }],
globals: { a_global_variable: false }, // eslint-disable-line camelcase
errors: [
{
messageId: "notCamelCase",
data: { name: "a_global_variable" },
type: "Identifier"
}
]
},

{
code: "export * as snake_cased from 'mod'",
parserOptions: { ecmaVersion: 2020, sourceType: "module" },
Expand Down