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.
28 lines
604 B
28 lines
604 B
7 years ago
|
{
|
||
|
"extends": [
|
||
|
"eslint-config-es5",
|
||
|
"plugin:prettier/recommended"
|
||
|
],
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 2017,
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"rules": {
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"singleQuote": true,
|
||
|
"tabWidth": "4"
|
||
|
}
|
||
|
],
|
||
|
"no-console": "off",
|
||
|
"no-use-before-define": ["warn", { "functions": false, "classes": false, "variables": true }],
|
||
|
"func-names": ["warn", "as-needed"]
|
||
|
|
||
|
},
|
||
|
"env": {
|
||
|
"amd": true,
|
||
|
"es6": true
|
||
|
}
|
||
|
}
|