mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-22 23:27:54 -05:00
23 lines
446 B
Text
23 lines
446 B
Text
|
{
|
||
|
"rules": {
|
||
|
"curly": [2, "multi-line"],
|
||
|
"indent": [2, 4],
|
||
|
"quotes": [2, "single"],
|
||
|
"linebreak-style": [2, "unix"],
|
||
|
"max-len": [2, 120, 4],
|
||
|
"semi": [2, "always"],
|
||
|
"strict": [2, "never"]
|
||
|
},
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"node": true
|
||
|
},
|
||
|
"ecmaFeatures": {
|
||
|
"jsx": true
|
||
|
},
|
||
|
"plugins": [
|
||
|
"react"
|
||
|
],
|
||
|
"extends": "eslint:recommended"
|
||
|
}
|