9d3903a1db
This is an initial implement that at the moment constructs the required SVG layout to be used by D3.
31 lines
625 B
Plaintext
31 lines
625 B
Plaintext
{
|
|
"extends": "semistandard",
|
|
"parser": "babel-eslint",
|
|
"parserOptions": {
|
|
"ecmaVersion": 7,
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"babel",
|
|
"react"
|
|
],
|
|
"rules": {
|
|
"generator-star-spacing": 0,
|
|
"babel/generator-star-spacing": 1,
|
|
"space-before-function-paren": [2, "never"],
|
|
"react/jsx-uses-react": 2,
|
|
"react/jsx-uses-vars": 2,
|
|
"react/react-in-jsx-scope": 2,
|
|
"object-curly-newline": ["error", {
|
|
"minProperties": 1
|
|
}],
|
|
"sort-vars": ["error", {
|
|
"ignoreCase": true
|
|
}],
|
|
"operator-linebreak": 0
|
|
}
|
|
}
|