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

reduce verbosity of rule definitions #2

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
"eslint:recommended"
],
parserOptions: {
"ecmaVersion": 2018,
"ecmaVersion": 2020,
ecmaFeatures: {
legacyDecorators: true,
},
Expand Down
2 changes: 1 addition & 1 deletion DEVELOPERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Testing:
- let you highlight the specified sources in standalone
- useful to check the details of the token generated
- it is used to construct the regression test input / output.
- By default, it reads the test case file, [`test/javascript-mixed/code-source.txt`](test/javascript-mixed/code-source.txt), and highlights it.
- By default, it reads the test case file, [`test/javascript-mixed/code-source.js`](test/javascript-mixed/code-source.js), and highlights it.
- To use it, run `bin/start-runmode.sh` in project root. Open the specified URL in a browser.
- Open the helper as file (i.e., with `file://` protocol ) will not work: It uses `fetch` to get the sample input sources, which requires http protocol.

Expand Down
Loading