45 lines
674 B
JavaScript
45 lines
674 B
JavaScript
|
module.exports = {
|
||
|
'env': {
|
||
|
'browser': true,
|
||
|
'es6': true,
|
||
|
'amd': true,
|
||
|
'jasmine': true,
|
||
|
},
|
||
|
'extends': 'eslint:recommended',
|
||
|
'parserOptions': {
|
||
|
'ecmaFeatures': {
|
||
|
'experimentalObjectRestSpread': true,
|
||
|
'jsx': true
|
||
|
},
|
||
|
'sourceType': 'module'
|
||
|
},
|
||
|
'plugins': [
|
||
|
'react'
|
||
|
],
|
||
|
'globals': {
|
||
|
'_': true,
|
||
|
'module': true,
|
||
|
},
|
||
|
'rules': {
|
||
|
'indent': [
|
||
|
'error',
|
||
|
2
|
||
|
],
|
||
|
'linebreak-style': [
|
||
|
'error',
|
||
|
'unix'
|
||
|
],
|
||
|
'quotes': [
|
||
|
'error',
|
||
|
'single'
|
||
|
],
|
||
|
'semi': [
|
||
|
'error',
|
||
|
'always'
|
||
|
],
|
||
|
'comma-dangle': [
|
||
|
'error',
|
||
|
'always-multiline'
|
||
|
]
|
||
|
}
|
||
|
};
|