Skip to content

Commit 94ef86e

Browse files
committed
style(eslintrc): allow use of process.env
Allow because process.env is used throughout the project and set by gulp.
1 parent 665792b commit 94ef86e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/app/.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"no-octal-escape": 0, //disallow use of octal escape sequences in string literals, such as var foo = "Copyright \251";
8383
"no-octal": 0, //disallow use of octal literals
8484
"no-param-reassign": 0, //disallow reassignment of function parameters
85-
"no-process-env": 1, //disallow use of process.env
85+
"no-process-env": 0, //allow use of process.env
8686
"no-proto": 2, //disallow usage of __proto__ property
8787
"no-redeclare": 2, //disallow declaring the same variable more than once
8888
"no-return-assign": 2, //disallow use of assignment in return statement

0 commit comments

Comments
 (0)