webgme-dss
Version:
Design Studio for Dynamic Systems with Modelica as backend
67 lines • 1.05 kB
Plain Text
{
"parser": "babel-eslint",
"extends": [
"airbnb"
],
"rules": {
"indent": [
"error",
4,
{
"SwitchCase": 1
}
],
"react/jsx-indent-props": [
"error",
4
],
"react/jsx-indent": [
"error",
4
],
"object-curly-spacing": [
"error",
"never"
],
"max-len": [
"error",
120
],
"react/jsx-tag-spacing": [
"error",
{
"closingSlash": "never",
"beforeSelfClosing": "never"
}
],
"react/forbid-prop-types": [
"error",
{
"forbid": [
"any",
"array"
]
}
],
"no-underscore-dangle": [
"error",
{
"allow": [
"_id"
]
}
],
"linebreak-style": 0,
"jsx-a11y/anchor-is-valid": [
"error",
{
"components": [
"Link"
],
"specialLink": [
"to"
]
}
]
}
}