2016-05-03 19:09:38 -04:00
|
|
|
{
|
|
|
|
"rules": {
|
|
|
|
"indent": ["error", "tab"],
|
|
|
|
"quotes": ["error", "double"],
|
2019-06-05 10:23:58 +02:00
|
|
|
"semi": ["error"],
|
2016-05-03 19:09:38 -04:00
|
|
|
"max-len": ["error", 250],
|
|
|
|
"curly": "error",
|
2016-12-30 17:44:41 -03:00
|
|
|
"camelcase": ["error", {"properties": "never"}],
|
2019-06-05 10:03:28 +02:00
|
|
|
"no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 1 }],
|
2017-10-12 11:06:57 +02:00
|
|
|
"no-trailing-spaces": ["error", {"ignoreComments": false }],
|
2016-12-30 17:44:41 -03:00
|
|
|
"no-irregular-whitespace": ["error"]
|
2016-05-03 19:09:38 -04:00
|
|
|
},
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"node": true,
|
|
|
|
"es6": true
|
2018-01-25 20:07:51 +01:00
|
|
|
},
|
|
|
|
"parserOptions": {
|
|
|
|
"sourceType": "module",
|
|
|
|
"ecmaFeatures": {
|
|
|
|
"globalReturn": true
|
|
|
|
}
|
|
|
|
}
|
2016-12-30 17:44:41 -03:00
|
|
|
}
|