31 lines
575 B
JavaScript
31 lines
575 B
JavaScript
|
module.exports = {
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"commonjs": true,
|
||
|
"es6": true
|
||
|
},
|
||
|
"extends": "eslint:recommended",
|
||
|
"parserOptions": {
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"rules": {
|
||
|
"indent": [
|
||
|
"error",
|
||
|
"tab"
|
||
|
],
|
||
|
"linebreak-style": [
|
||
|
"error",
|
||
|
"windows"
|
||
|
],
|
||
|
"quotes": [
|
||
|
"error",
|
||
|
"single"
|
||
|
],
|
||
|
"semi": [
|
||
|
"error",
|
||
|
"always"
|
||
|
],
|
||
|
"no-console": 0,
|
||
|
"no-undef": 0
|
||
|
}
|
||
|
};
|