mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-04-01 22:38:10 +08:00
* Add new overrides option * Add file to package.json * Create our own loader * Remove overrides * We have to use a real babel option * Add comments
18 lines
279 B
Plaintext
18 lines
279 B
Plaintext
{
|
|
"extends": "eslint:recommended",
|
|
"env": {
|
|
"browser": true,
|
|
"commonjs": true,
|
|
"node": true,
|
|
"es6": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018
|
|
},
|
|
"rules": {
|
|
"no-console": "off",
|
|
"strict": ["error", "global"],
|
|
"curly": "warn"
|
|
}
|
|
}
|