aboutsummaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/acorn/README.md
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2016-04-09 14:11:01 +0200
committersilverwind <me@silverwind.io>2016-04-10 11:46:08 +0200
commit2f6ff1bb64ac4f3e201039c8e83f8eb95f73c769 (patch)
tree710fe0778ca523281965244fdca60c4a031980e6 /tools/eslint/node_modules/acorn/README.md
parent8f4fdc93f07a06a62d4f867c6e0fd2f6287bb8be (diff)
downloadandroid-node-v8-2f6ff1bb64ac4f3e201039c8e83f8eb95f73c769.tar.gz
android-node-v8-2f6ff1bb64ac4f3e201039c8e83f8eb95f73c769.tar.bz2
android-node-v8-2f6ff1bb64ac4f3e201039c8e83f8eb95f73c769.zip
tools: update ESLint to 2.7.0
PR-URL: https://github.com/nodejs/node/pull/6132 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: thefourtheye <thechargingvolcano@gmail.com>
Diffstat (limited to 'tools/eslint/node_modules/acorn/README.md')
-rw-r--r--tools/eslint/node_modules/acorn/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/eslint/node_modules/acorn/README.md b/tools/eslint/node_modules/acorn/README.md
index 12680abf6b..4083cbe297 100644
--- a/tools/eslint/node_modules/acorn/README.md
+++ b/tools/eslint/node_modules/acorn/README.md
@@ -62,8 +62,8 @@ object referring to that same position.
[estree]: https://github.com/estree/estree
- **ecmaVersion**: Indicates the ECMAScript version to parse. Must be
- either 3, 5, or 6. This influences support for strict mode, the set
- of reserved words, and support for new syntax features. Default is 5.
+ either 3, 5, 6, or 7. This influences support for strict mode, the set
+ of reserved words, and support for new syntax features. Default is 6.
- **sourceType**: Indicate the mode the code should be parsed in. Can be
either `"script"` or `"module"`.
@@ -304,7 +304,7 @@ The `bin/acorn` utility can be used to parse a file from the command
line. It accepts as arguments its input file and the following
options:
-- `--ecma3|--ecma5|--ecma6`: Sets the ECMAScript version to parse. Default is
+- `--ecma3|--ecma5|--ecma6|--ecma7`: Sets the ECMAScript version to parse. Default is
version 5.
- `--module`: Sets the parsing mode to `"module"`. Is set to `"script"` otherwise.