mirror of
https://github.com/cs01/gdbgui
synced 2024-11-16 07:47:46 +01:00
27 lines
477 B
JSON
27 lines
477 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"jquery": true
|
|
},
|
|
"globals": {
|
|
"initial_data": true,
|
|
"module": true,
|
|
"_": true,
|
|
"moment": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"experimentalObjectRestSpread": true,
|
|
"jsx": true
|
|
},
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": ["react"],
|
|
"rules": {
|
|
"no-console": [0],
|
|
"react/jsx-uses-vars": 1
|
|
},
|
|
"parser": "babel-eslint"
|
|
}
|