mirror of
https://github.com/google/blockly.git
synced 2026-01-08 01:20:12 +01:00
Also: - Ensure that the `comma-dangle` rule will not be applied to function parameter lists (even when multi-line). - Update tests/node/.eslintrc.json to make the environment node-specific and not pinned to es6.
13 lines
205 B
JSON
13 lines
205 B
JSON
{
|
|
"env": {
|
|
"node": true,
|
|
"browser": false,
|
|
"mocha": true
|
|
},
|
|
"globals": {
|
|
"console": true,
|
|
"require": true
|
|
},
|
|
"extends": "../../.eslintrc.json"
|
|
}
|