source: frontend/node_modules/underscore/modules/.eslintrc

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 346 bytes
Line 
1{
2 "parserOptions": {
3 "ecmaVersion": 6,
4 "sourceType": "module",
5 },
6 "plugins": [
7 "import"
8 ],
9 "extends": [
10 "plugin:import/errors"
11 ],
12 "rules": {
13 // ExtendScript wrongly gives equal precedence to && and ||. #2949
14 "no-mixed-operators": [
15 "error",
16 {
17 "groups": [["&&", "||"]]
18 }
19 ]
20 }
21}
Note: See TracBrowser for help on using the repository browser.