mirror of
https://github.com/google-map-react/google-map-react.git
synced 2025-12-08 18:26:32 +00:00
* Rewrite library using create-react-library * Export utils properly * Remove unnecessary code and fix eslintignore * Update CHANGELOG
33 lines
602 B
Plaintext
33 lines
602 B
Plaintext
{
|
|
"parser": "babel-eslint",
|
|
"extends": [
|
|
"standard",
|
|
"standard-react",
|
|
"plugin:prettier/recommended",
|
|
"prettier/standard",
|
|
"prettier/react"
|
|
],
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020,
|
|
"ecmaFeatures": {
|
|
"legacyDecorators": true,
|
|
"jsx": true
|
|
}
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "16"
|
|
}
|
|
},
|
|
"rules": {
|
|
"space-before-function-paren": 0,
|
|
"react/prop-types": 0,
|
|
"react/jsx-handler-names": 0,
|
|
"react/jsx-fragments": 0,
|
|
"react/no-unused-prop-types": 0,
|
|
"import/export": 0
|
|
}
|
|
} |