Skip to content

Commit

Permalink
frame working
Browse files Browse the repository at this point in the history
  • Loading branch information
lxieyang committed Jul 25, 2019
1 parent a164c8a commit 8ffd723
Show file tree
Hide file tree
Showing 14 changed files with 753 additions and 93 deletions.
24 changes: 23 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
{
"extends": "react-app"
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": false,
"codeFrame": false
},
"extends": ["react-app", "prettier"],
"env": {
"browser": true,
"jest": true
},
"rules": {
"max-len": ["error", {
"code": 300
}],
"prefer-promise-reject-errors": ["off"],
"react/jsx-filename-extension": ["off"],
"react/prop-types": ["off"],
"no-return-assign": ["off"]
},
"globals": {
"chrome": "readonly"
}
}
Loading

0 comments on commit 8ffd723

Please sign in to comment.