1
0
mirror of https://github.com/kognise/water.css.git synced 2025-01-16 19:28:13 +01:00
css-water.css/.eslintrc.json
2020-05-27 21:03:51 -05:00

38 lines
649 B
JSON

{
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"standard"
],
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"plugins": [
"html",
"markdown",
"prefer-arrow"
],
"overrides": [
{
"files": [ "**/*.md" ],
"processor": "markdown/markdown"
}
],
"rules": {
"prefer-arrow/prefer-arrow-functions": [
"error",
{
"disallowPrototype": true,
"singleReturnOnly": false,
"classPropertiesAllowed": false
}
],
"func-style": ["error", "expression"],
"arrow-parens": ["error", "always"]
}
}