2017-04-01 14:34:10 -04:00
|
|
|
module.exports = {
|
|
|
|
'env': {
|
|
|
|
'es6': true,
|
|
|
|
'jasmine': true,
|
|
|
|
'node': true
|
|
|
|
},
|
|
|
|
'extends': [
|
|
|
|
'eslint:recommended',
|
|
|
|
'plugin:jasmine/recommended'
|
|
|
|
],
|
2021-04-24 04:18:01 -04:00
|
|
|
'parserOptions': {
|
|
|
|
'ecmaVersion': 2020,
|
|
|
|
},
|
2017-04-01 14:34:10 -04:00
|
|
|
'plugins': [
|
|
|
|
'jasmine'
|
|
|
|
],
|
|
|
|
'rules': {
|
|
|
|
'linebreak-style': ['error', 'unix'],
|
2021-04-05 12:05:54 -04:00
|
|
|
'no-prototype-builtins': ['off'],
|
2017-04-01 14:34:10 -04:00
|
|
|
'quotes': ['error', 'single'],
|
2017-10-25 10:02:01 -04:00
|
|
|
'semi': ['error', 'always'],
|
2021-04-05 12:05:54 -04:00
|
|
|
'jasmine/new-line-before-expect': ['off'],
|
2017-04-01 14:34:10 -04:00
|
|
|
}
|
|
|
|
};
|