]>
Commit | Line | Data |
---|---|---|
1 | module.exports = { | |
2 | "extends": "airbnb-base", | |
3 | "env": { | |
4 | "browser": true, | |
5 | }, | |
6 | "rules": { | |
7 | "no-param-reassign": 0, // manipulate DOM style properties | |
8 | "no-restricted-globals": 0, // currently Shaarli uses alert/confirm, could be be improved later | |
9 | "no-alert": 0, // currently Shaarli uses alert/confirm, could be be improved later | |
10 | "no-cond-assign": [2, "except-parens"], // assignment in while loops is readable and avoid assignment duplication | |
11 | } | |
12 | }; |