mirror of
https://github.com/react-webpack-generators/generator-react-webpack.git
synced 2025-12-08 18:01:59 +00:00
23 lines
430 B
Plaintext
23 lines
430 B
Plaintext
{
|
|
"env": {
|
|
"browser": false,
|
|
"amd": false,
|
|
"es6": true,
|
|
"node": true,
|
|
"mocha": true
|
|
},
|
|
"rules": {
|
|
"comma-dangle": 1,
|
|
"quotes": [ 1, "single" ],
|
|
"no-undef": 1,
|
|
"global-strict": 0,
|
|
"no-extra-semi": 1,
|
|
"no-underscore-dangle": 0,
|
|
"no-console": 0,
|
|
"no-unused-vars": 1,
|
|
"no-trailing-spaces": [1, { "skipBlankLines": true }],
|
|
"no-unreachable": 1,
|
|
"no-alert": 0
|
|
}
|
|
}
|