mirror of
https://github.com/weaveworks/scope.git
synced 2026-02-14 18:09:59 +00:00
as per discussion in https://github.com/weaveworks/scope/pull/3643#issuecomment-507233272
52 lines
1.1 KiB
Plaintext
52 lines
1.1 KiB
Plaintext
{
|
|
"extends": "airbnb",
|
|
"parser": "babel-eslint",
|
|
"env": {
|
|
"browser": true,
|
|
"jest": true,
|
|
"node": true
|
|
},
|
|
"rules": {
|
|
"no-debugger": 1,
|
|
"comma-dangle": 0,
|
|
"global-require": 0,
|
|
"sort-keys": [
|
|
"error",
|
|
"asc",
|
|
{
|
|
"caseSensitive": false,
|
|
"natural": true
|
|
}
|
|
],
|
|
"import/no-extraneous-dependencies": [
|
|
"error",
|
|
{
|
|
"devDependencies": true,
|
|
"optionalDependencies": true,
|
|
"peerDependencies": true
|
|
}
|
|
],
|
|
"import/prefer-default-export": 0,
|
|
"jsx-a11y/no-static-element-interactions": 0,
|
|
"no-param-reassign": 0,
|
|
"no-restricted-properties": 0,
|
|
"object-curly-spacing": 0,
|
|
"react/destructuring-assignment": 0,
|
|
"react/jsx-closing-bracket-location": 0,
|
|
"react/jsx-filename-extension": [
|
|
2,
|
|
{
|
|
"extensions": [
|
|
".js",
|
|
".jsx"
|
|
]
|
|
}
|
|
],
|
|
"react/prefer-stateless-function": 0,
|
|
"react/sort-comp": 0,
|
|
"react/prop-types": 0,
|
|
"jsx-a11y/click-events-have-key-events": 0,
|
|
"jsx-a11y/mouse-events-have-key-events": 0
|
|
}
|
|
}
|