You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
45 lines
1.3 KiB
/** |
|
* @author Vignesh Anand |
|
* See LICENSE file in root directory for full license. |
|
*/ |
|
"use strict" |
|
|
|
//------------------------------------------------------------------------------ |
|
// Rule Definition |
|
//------------------------------------------------------------------------------ |
|
|
|
module.exports = { |
|
meta: { |
|
type: "suggestion", |
|
docs: { |
|
description: "disallow the use of `process.env`", |
|
category: "Stylistic Issues", |
|
recommended: false, |
|
url: |
|
"https://github.com/mysticatea/eslint-plugin-node/blob/v11.1.0/docs/rules/no-process-env.md", |
|
}, |
|
fixable: null, |
|
schema: [], |
|
messages: { |
|
unexpectedProcessEnv: "Unexpected use of process.env.", |
|
}, |
|
}, |
|
|
|
create(context) { |
|
return { |
|
MemberExpression(node) { |
|
const objectName = node.object.name |
|
const propertyName = node.property.name |
|
|
|
if ( |
|
objectName === "process" && |
|
!node.computed && |
|
propertyName && |
|
propertyName === "env" |
|
) { |
|
context.report({ node, messageId: "unexpectedProcessEnv" }) |
|
} |
|
}, |
|
} |
|
}, |
|
}
|
|
|