1
0
mirror of https://github.com/chylex/Firefox-SCsCC.git synced 2024-10-17 09:42:46 +02:00
Firefox-SCsCC/.eslintrc.js
2018-03-12 09:35:39 +01:00

27 lines
480 B
JavaScript

module.exports = {
extends: 'airbnb',
env: {
'browser': true,
'webextensions': true,
},
globals: {
UNICODE_ALPHABETIC: false,
},
settings: {
react: {
pragma: 'h',
},
},
rules: {
'arrow-parens': ['error', 'always'],
'max-len': 'off',
'no-console': 'off',
'no-param-reassign': ['error', { props: false }],
'react/no-unknown-property': 'off',
'react/prop-types': 'off',
'jsx-a11y/label-has-for': 'off',
},
};