mirror of
https://github.com/google/blockly.git
synced 2026-01-19 06:47:12 +01:00
* Revert "fix: lint" This reverts commit050956d105. * Revert "fix: run mocha as a module" This reverts commit4dac25ae99. * Revert "move to modules, but break mocha" This reverts commit220d7bbd1d.
18 lines
364 B
JSON
18 lines
364 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"mocha": true
|
|
},
|
|
"globals": {
|
|
"chai": false,
|
|
"sinon": false
|
|
},
|
|
"rules": {
|
|
"no-unused-vars": ["off"],
|
|
// Allow uncommented helper functions in tests.
|
|
"require-jsdoc": ["off"],
|
|
"prefer-rest-params": ["off"]
|
|
},
|
|
"extends": "../../.eslintrc.json"
|
|
}
|