1
0
Fork 0
Firefox-SCsCC/.eslintrc.js

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 }],
},
};