]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - .dev/.eslintrc.js
Add SASSLint makefile target, and run it in CI
[github/shaarli/Shaarli.git] / .dev / .eslintrc.js
CommitLineData
47978e87
A
1module.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};