fd22b0bf58
V2 (Laravel re-make)
25 lines
397 B
JavaScript
Vendored
25 lines
397 B
JavaScript
Vendored
module.exports = {
|
|
extends: 'airbnb-base',
|
|
parserOptions: {
|
|
sourceType: 'script',
|
|
},
|
|
plugins: [
|
|
'import',
|
|
'markdown',
|
|
],
|
|
rules: {
|
|
'curly': [
|
|
'error',
|
|
'all',
|
|
],
|
|
'brace-style': [
|
|
'error',
|
|
'1tbs',
|
|
{ 'allowSingleLine': false },
|
|
],
|
|
'no-console': 'error',
|
|
'no-ternary': 'error',
|
|
'newline-before-return': 'error',
|
|
},
|
|
};
|