This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| node_modules/ | |
| build/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "extends": ["airbnb", "prettier", "prettier/flowtype", "prettier/react"], | |
| "plugins": ["flowtype", "react", "prettier"], | |
| "parser": "babel-eslint", | |
| "rules": { | |
| "react/jsx-filename-extension": [ | |
| 1, | |
| { | |
| "extensions": [".js", "jsx"] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ignore] | |
| [include] | |
| [libs] | |
| [lints] | |
| [options] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // @flow | |
| import React from 'react'; | |
| import { hot } from 'react-hot-loader'; | |
| import Button from 'Components/button'; | |
| import style from './app.css'; | |
| const App = () => ( | |
| <div className={style.app}> | |
| React Starter | |
| <span role="img" aria-label="rocket ship"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "presets": ["@babel/preset-env", "@babel/react", "@babel/flow"], | |
| "plugins": ["react-hot-loader/babel"] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rules: | |
| leading-zero: 0 | |
| function-name-format: | |
| - 2 | |
| - allow-leading-underscore: false | |
| convention: camelcase | |
| mixin-name-format: | |
| - 2 | |
| - allow-leading-underscore: false | |
| convention: camelcase |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| import { hot } from 'react-hot-loader'; | |
| import Button from 'Components/button'; | |
| import style from './app.scss'; | |
| const App = () => ( | |
| <div className={style.app}> | |
| React Starter | |
| <span role="img" aria-label="rocket ship"> | |
| 🚀 |
NewerOlder