33 lines
529 B
JSON
33 lines
529 B
JSON
{
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"rules": {
|
|
"no-console": "off",
|
|
"no-unused-vars": "warn",
|
|
"semi": ["error", "always"]
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"jquery": true,
|
|
"node": true,
|
|
"es6": true,
|
|
"mocha": true
|
|
},
|
|
"plugins": [
|
|
"react"
|
|
],
|
|
"globals": {
|
|
"cc": false,
|
|
"CC_EDITOR": false,
|
|
"CC_DEV": false,
|
|
"CC_JSB": false,
|
|
"_ccsg": false
|
|
}
|
|
}
|