mde-react
Version:
Markdown editor built in react
54 lines (53 loc) • 788 B
Plain Text
{
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"jest": true
},
"plugins": [
"react"
],
"extends": [
"airbnb"
],
"rules": {
"linebreak-style": [
"off"
],
"indent": [
2
],
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
],
"import/no-unresolved": [
2,
{
"ignore": [
"~/*"
]
}
],
"import/extensions": [
"off"
],
"import/no-extraneous-dependencies": [
"off"
],
"import/prefer-default-export": [
"warn"
],
"jsx-a11y/href-no-hash": 0,
"react/no-unused-prop-types": ["warn"]
},
"globals": {
"__DEV__": true
}
}