mirror of
https://github.com/gosticks/react-bootstrap-table2.git
synced 2025-10-16 11:55:39 +00:00
27 lines
717 B
Plaintext
27 lines
717 B
Plaintext
{
|
|
"extends": "airbnb",
|
|
"parser": "babel-eslint",
|
|
"env": {
|
|
"browser": true,
|
|
"jest": true,
|
|
"node": true
|
|
},
|
|
"plugins": [
|
|
"react"
|
|
],
|
|
"rules": {
|
|
"comma-dangle": ["error", "never"],
|
|
"react/jsx-curly-spacing": [2, "always"],
|
|
"react/forbid-prop-types": 0,
|
|
"react/jsx-filename-extension": 0,
|
|
"react/jsx-space-before-closing": 0,
|
|
"react/jsx-tag-spacing": ["error", { "beforeSelfClosing": "always" }],
|
|
"import/extensions": 0, // skip import extensions
|
|
"import/no-unresolved": [0, { "ignore": ["^react-bootstrap-table"] }], // monorepo setup
|
|
"import/prefer-default-export": 0,
|
|
"import/no-extraneous-dependencies": 0
|
|
},
|
|
"globals": {
|
|
"jest": false
|
|
}
|
|
} |