mirror of
https://github.com/status-im/status-components.git
synced 2025-01-12 02:44:09 +00:00
fdbec95629
- Added eslint + prettier + husky + lint-staged - Added Typography story - Added Icons story - Added styleguide subfolder for theming components - Updated Button component to utilise theme
41 lines
705 B
Plaintext
41 lines
705 B
Plaintext
{
|
|
"parser": "babel-eslint",
|
|
"extends": [
|
|
"prettier",
|
|
"prettier/react"
|
|
],
|
|
"plugins": [
|
|
"prettier",
|
|
"react"
|
|
],
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"jest": true
|
|
},
|
|
"globals": {
|
|
"__DEV__": false,
|
|
"__TEST__": false,
|
|
"__PROD__": false,
|
|
"__COVERAGE__": false
|
|
},
|
|
"rules": {
|
|
"valid-jsdoc": "warn",
|
|
"react/prop-types": "error",
|
|
"linebreak-style": ["error", "unix"],
|
|
"prettier/prettier": "error",
|
|
"max-len": ["error", 80]
|
|
},
|
|
"settings": {
|
|
"import/resolver": {
|
|
"webpack": {
|
|
"config": "./.storybook/webpack.config.js"
|
|
}
|
|
},
|
|
"react": {
|
|
"pragma": "React",
|
|
"version": "16.8"
|
|
}
|
|
}
|
|
}
|