You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
975 B
JavaScript
42 lines
975 B
JavaScript
7 years ago
|
// For reference: https://github.com/airbnb/javascript
|
||
|
|
||
|
module.exports = {
|
||
|
settings: {
|
||
|
'import/core-modules': [
|
||
|
'electron'
|
||
|
]
|
||
|
},
|
||
|
|
||
|
extends: [
|
||
|
'airbnb-base',
|
||
|
],
|
||
|
|
||
|
rules: {
|
||
|
'comma-dangle': ['error', {
|
||
|
arrays: 'always-multiline',
|
||
|
objects: 'always-multiline',
|
||
|
imports: 'always-multiline',
|
||
|
exports: 'always-multiline',
|
||
|
functions: 'never',
|
||
|
}],
|
||
|
|
||
|
// putting params on their own line helps stay within line length limit
|
||
|
'function-paren-newline': ['error', 'consistent'],
|
||
|
|
||
|
// 90 characters allows three+ side-by-side screens on a standard-size monitor
|
||
|
'max-len': ['error', {
|
||
|
code: 90,
|
||
|
ignoreUrls: true,
|
||
|
}],
|
||
|
|
||
|
// it helps readability to put public API at top,
|
||
|
'no-use-before-define': 'off',
|
||
|
|
||
|
// useful for unused or internal fields
|
||
|
'no-underscore-dangle': 'off',
|
||
|
|
||
|
// though we have a logger, we still remap console to log to disk
|
||
|
'no-console': 'off',
|
||
|
}
|
||
|
};
|