2016-03-01 14:10:08 +09:00
|
|
|
{
|
2016-10-15 13:59:52 -04:00
|
|
|
"extends": [
|
|
|
|
"eslint:recommended"
|
|
|
|
],
|
|
|
|
"parser": "babel-eslint",
|
|
|
|
"parserOptions": {
|
2016-11-15 09:02:30 +01:00
|
|
|
"allowImportExportEverywhere": true,
|
2016-10-15 13:59:52 -04:00
|
|
|
"ecmaVersion": 6,
|
|
|
|
"sourceType": "module"
|
2016-03-01 14:10:08 +09:00
|
|
|
},
|
|
|
|
"rules": {
|
2016-10-15 13:59:52 -04:00
|
|
|
"babel/generator-star-spacing": 0,
|
|
|
|
"babel/new-cap": 1,
|
|
|
|
"babel/array-bracket-spacing": 0,
|
|
|
|
"babel/object-curly-spacing": 0,
|
|
|
|
"babel/object-shorthand": 0,
|
|
|
|
"babel/arrow-parens": 0,
|
|
|
|
"babel/no-await-in-loop": 1,
|
2016-03-01 14:10:08 +09:00
|
|
|
"comma-dangle": 0,
|
2016-10-15 13:59:52 -04:00
|
|
|
"key-spacing": 0,
|
|
|
|
"no-extra-boolean-cast": 0,
|
|
|
|
"no-undef": 1,
|
|
|
|
"no-unused-vars": 1,
|
|
|
|
"no-console": 1
|
|
|
|
},
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
2016-11-15 09:02:30 +01:00
|
|
|
"commonjs": true,
|
|
|
|
"es6": true,
|
|
|
|
"meteor": true,
|
|
|
|
"node": true
|
2016-10-15 13:59:52 -04:00
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
"babel",
|
2016-11-15 09:02:30 +01:00
|
|
|
"meteor"
|
2016-10-15 13:59:52 -04:00
|
|
|
],
|
2016-11-15 09:02:30 +01:00
|
|
|
"settings": {
|
|
|
|
"import/resolver": "meteor"
|
|
|
|
},
|
2016-10-15 13:59:52 -04:00
|
|
|
"modules": true,
|
|
|
|
"root": true,
|
|
|
|
"globals": {
|
|
|
|
"param": true,
|
|
|
|
"returns": true
|
2016-03-01 14:10:08 +09:00
|
|
|
}
|
|
|
|
}
|