314ac21842
This allows us to enforce that `var` is not used anymore in the unit tests to modernize the code and prevent subtle bugs.
11 lines
105 B
Plaintext
11 lines
105 B
Plaintext
{
|
|
"extends": [
|
|
"../.eslintrc"
|
|
],
|
|
|
|
"rules": {
|
|
// ECMAScript 6
|
|
"no-var": "error",
|
|
},
|
|
}
|