You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
501 B
24 lines
501 B
{
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "script",
|
|
"ecmaFeatures": {
|
|
"impliedStrict": true
|
|
}
|
|
},
|
|
"parser": "babel-eslint",
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended"
|
|
],
|
|
"rules": {
|
|
"linebreak-style": [2, "unix"],
|
|
"quotes": [1, "single", {"allowTemplateLiterals": true}],
|
|
"no-console": 1,
|
|
"semi": [2, "always"],
|
|
"camelcase": [1, { "properties": "always" }],
|
|
"no-cond-assign": [2, "except-parens"]
|
|
}
|
|
}
|
|
|