mirror of
https://github.com/chylex/Firefox-SCsCC.git
synced 2024-11-14 17:42:52 +01:00
17 lines
313 B
JavaScript
17 lines
313 B
JavaScript
module.exports = {
|
|
extends: 'airbnb-base',
|
|
env: {
|
|
browser: true,
|
|
webextensions: true,
|
|
},
|
|
globals: {
|
|
UNICODE_ALPHABETIC: false,
|
|
},
|
|
rules: {
|
|
'arrow-parens': ['error', 'always'],
|
|
'max-len': 'off',
|
|
'no-console': 'off',
|
|
'no-param-reassign': ['error', { props: false }],
|
|
},
|
|
};
|