cra-structure-cli
Version:
A CLI with bootstrap create-react-app. Initiate react project. V2.0 supported typescript.
23 lines • 551 B
Plain Text
{
"extends": ["eslint:recommended", "react-app"],
"rules": {
"no-trailing-spaces": 2,
"no-extra-semi": 2,
"semi": 2,
"indent": [2, 2],
"quotes": [2, "single"],
"jsx-quotes": [2, "prefer-single"],
"no-multi-spaces": 2,
"no-console": 1,
"spaced-comment": 2,
"block-spacing": 2,
"object-curly-spacing": [2, "always"],
"array-bracket-spacing": 2,
"brace-style": 2,
"comma-spacing": 2,
"no-mixed-spaces-and-tabs": 2,
"semi-spacing": 2,
"keyword-spacing": 2,
"comma-style": 2
}
}