58 lines
1.4 KiB
JavaScript
58 lines
1.4 KiB
JavaScript
// For reference: https://github.com/airbnb/javascript
|
|
|
|
module.exports = {
|
|
settings: {
|
|
'import/core-modules': [
|
|
'electron'
|
|
]
|
|
},
|
|
|
|
extends: [
|
|
'airbnb-base',
|
|
'prettier',
|
|
],
|
|
|
|
plugins: [
|
|
'mocha',
|
|
'more',
|
|
],
|
|
|
|
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', 'multiline'],
|
|
|
|
// 90 characters allows three+ side-by-side screens on a standard-size monitor
|
|
'max-len': ['error', {
|
|
code: 90,
|
|
ignoreUrls: true,
|
|
}],
|
|
|
|
// prevents us from accidentally checking in exclusive tests (`.only`):
|
|
'mocha/no-exclusive-tests': 'error',
|
|
|
|
// encourage consistent use of `async` / `await` instead of `then`
|
|
'more/no-then': 'error',
|
|
|
|
// 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',
|
|
|
|
// consistently place operators at end of line except ternaries
|
|
'operator-linebreak': 'error',
|
|
|
|
'quotes': ['error', 'single', { 'avoidEscape': true, 'allowTemplateLiterals': false }],
|
|
}
|
|
};
|